mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 18:46:52 +00:00
8 lines
171 B
Python
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",
|
|
)
|