flake8/example-plugin/src/flake8_example_plugin/on_by_default.py
2022-08-05 19:51:08 -04:00

13 lines
243 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 []