Skip to content

Commit 6c8487d

Browse files
authored
Merge pull request nhoad#22 from CalumY/Fix/21/Plugin-breaks-flake8-help
Fix broken flake8 --help
2 parents e56de71 + 2a98d32 commit 6c8487d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

flake8_unused_arguments.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def add_options(cls, option_manager: flake8.options.manager.OptionManager) -> No
8080
dest="unused_arguments_ignore_nested_functions",
8181
help=(
8282
"If provided, only functions at the top level of a module or "
83-
"methods of a class in the top level of a module are checked.",
83+
"methods of a class in the top level of a module are checked."
8484
),
8585
)
8686

@@ -92,7 +92,7 @@ def add_options(cls, option_manager: flake8.options.manager.OptionManager) -> No
9292
dest="unused_arguments_ignore_dunder_methods",
9393
help=(
9494
"If provided, all double-underscore methods are ignored, e.g., __new__, _init__, "
95-
"__enter__, __exit__, __reduce_ex__, etc.",
95+
"__enter__, __exit__, __reduce_ex__, etc."
9696
),
9797
)
9898

0 commit comments

Comments
 (0)