flake8/example-plugin/src/flake8_example_plugin/on_by_default.py
2021-12-31 15:09:54 -08:00

12 lines
208 B
Python

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