Skip to content

Commit fcafaa0

Browse files
committed
refactor(nix): remove redundant parentheses
1 parent 07a47be commit fcafaa0

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

mkExtension.nix

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,10 @@ let
1111
f: args:
1212
lib.customisation.makeOverridable f (
1313
if builtins.isFunction args then
14-
(
15-
let
16-
x = args (f x);
17-
in
18-
x
19-
)
14+
let
15+
x = args (f x);
16+
in
17+
x
2018
else
2119
args
2220
);

0 commit comments

Comments
 (0)