Skip to content

Commit c9fbf52

Browse files
Update pylint/checkers/match_statements_checker.py
Co-authored-by: Jacob Walls <[email protected]>
1 parent 6488491 commit c9fbf52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylint/checkers/match_statements_checker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class MatchStatementChecker(BaseChecker):
2323
msgs = {
2424
"E5000": (
2525
"The name capture `case %s` makes the remaining patterns unreachable. "
26-
"Use a dotted name(for example an enum) to fix this",
26+
"Use a dotted name (for example an enum) to fix this.",
2727
"unreachable-match-patterns",
2828
"Emitted when a name capture pattern in a match statement is used "
2929
"and there are case statements below it.",

0 commit comments

Comments
 (0)