flake8/example-plugin/src/flake8_example_plugin/on_by_default.py
2025-07-21 21:22:25 +00:00

14 lines
244 B
Python

"""Our first example plugin."""
from __future__ import annotations
class ExampleOne:
"""First Example Plugin."""
def __init__(self, tree):
self.tree = tree
def run(self):
"""Do nothing."""
yield from []