flake8/example-plugin/src/flake8_example_plugin/on_by_default.py
2021-03-30 17:37:13 -07:00

14 lines
272 B
Python

"""Our first example plugin."""
class ExampleOne:
"""First Example Plugin."""
name = 'on-by-default-example-plugin'
version = '1.0.0'
def __init__(self, tree):
self.tree = tree
def run(self):
"""Do nothing."""
yield from []