treewide: remove redundant parentheses

Auto-fixed by nixf-diagnose.
This commit is contained in:
Wolfgang Walther
2025-09-01 13:18:30 +02:00
parent c283f32d29
commit 91a8fee3aa
336 changed files with 826 additions and 829 deletions

View File

@@ -15,7 +15,7 @@ let
postgresql-clauses = makeEnsureTestFor package;
};
test-sql = pkgs.writeText "postgresql-test" (''
test-sql = pkgs.writeText "postgresql-test" ''
CREATE EXTENSION pgcrypto; -- just to check if lib loading works
CREATE TABLE sth (
id int
@@ -38,7 +38,7 @@ let
}
console.log(xs.reduce((acc, x) => acc + x, 0));
$$ LANGUAGE plv8;
'');
'';
makeTestForWithBackupAll =
package: backupAll: