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