Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/fixit/rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ class LintRule(BatchableCSTVisitor):
__ https://peps.python.org/pep-0440/#version-specifiers
"""

VALID: ClassVar[List[Union[str, Valid]]]
VALID: ClassVar[Sequence[Union[str, Valid]]]
"Test cases that should produce no errors/reports"

INVALID: ClassVar[List[Union[str, Invalid]]]
INVALID: ClassVar[Sequence[Union[str, Invalid]]]
"Test cases that are expected to produce errors, with optional replacements"

AUTOFIX = False # set by __subclass_init__
Expand Down