summaryrefslogtreecommitdiff
path: root/example-plugin/src/flake8_example_plugin/on_by_default.py
blob: d712718c195dd4920fb92633ccae9bc2cd037f07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""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 []