flake8/example-plugin/src/flake8_example_plugin/__init__.py
2016-10-25 18:21:50 -05:00

9 lines
172 B
Python

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