mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-01 11:26:54 +00:00
12 lines
208 B
Python
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 []
|