flake8/example-plugin/src/flake8_example_plugin/__init__.py
2022-08-05 19:51:08 -04:00

10 lines
207 B
Python

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