mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-30 10:46:54 +00:00
9 lines
172 B
Python
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',
|
|
)
|