mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-31 11:16:54 +00:00
require python>=3.7
This commit is contained in:
parent
6027577d32
commit
e94fb10940
76 changed files with 337 additions and 263 deletions
|
|
@ -1,4 +1,6 @@
|
|||
"""Module for an example Flake8 plugin."""
|
||||
from __future__ import annotations
|
||||
|
||||
from .off_by_default import ExampleTwo
|
||||
from .on_by_default import ExampleOne
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
"""Our first example plugin."""
|
||||
from __future__ import annotations
|
||||
|
||||
|
||||
class ExampleTwo:
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
"""Our first example plugin."""
|
||||
from __future__ import annotations
|
||||
|
||||
|
||||
class ExampleOne:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue