flake8/example-plugin/src/flake8_example_plugin/__init__.py
2021-04-18 09:23:48 -07:00

8 lines
171 B
Python

"""Module for an example Flake8 plugin."""
from .off_by_default import ExampleTwo
from .on_by_default import ExampleOne
__all__ = (
"ExampleOne",
"ExampleTwo",
)