Skip to content

Instantly share code, notes, and snippets.

@smagch
Last active February 18, 2025 05:06
Show Gist options
  • Save smagch/121873515649506a09ff870d56db1929 to your computer and use it in GitHub Desktop.
Save smagch/121873515649506a09ff870d56db1929 to your computer and use it in GitHub Desktop.
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