mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-01 03:26:52 +00:00
13 lines
243 B
Python
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 []
|