Last active
February 18, 2025 05:06
-
-
Save smagch/121873515649506a09ff870d56db1929 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Reporter(Protocol): | |
def report_error(self, node: ast.AST) -> None: | |
... | |
class ConcreteReporter(Reporter): | |
def __init__(self, rule_id: str, filename: str) -> None: | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment