Skip to content

Commit 5261fcc

Browse files
[style] Remove unrequired parenthesis
1 parent e394f32 commit 5261fcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylint/config/config_initialization.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ def _order_all_first(config_args: list[str], *, joined: bool) -> list[str]:
169169
all_action = ""
170170

171171
for i, arg in enumerate(config_args):
172-
if joined and (arg.startswith(("--enable=", "--disable="))):
172+
if joined and arg.startswith(("--enable=", "--disable=")):
173173
value = arg.split("=")[1]
174174
elif arg in {"--enable", "--disable"}:
175175
value = config_args[i + 1]

0 commit comments

Comments
 (0)