Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielNoord committed Sep 19, 2022
1 parent 2bc6c10 commit 35a5a6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylint/config/callback_actions.py
Expand Up @@ -161,7 +161,7 @@ def __call__(
values_to_print: list[str] = []
for msg in values:
assert isinstance(msg, str)
values_to_print += msg.split(",")
values_to_print += utils._check_csv(msg)
self.run.linter.msgs_store.help_message(values_to_print)
sys.exit(0)

Expand Down

0 comments on commit 35a5a6f

Please sign in to comment.