mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
12 lines
326 B
Python
12 lines
326 B
Python
"""Module that is off sys.path by default, for testing local-plugin-paths."""
|
|
from __future__ import annotations
|
|
|
|
|
|
class ExtensionTestPlugin2:
|
|
"""Extension test plugin in its own directory."""
|
|
|
|
def __init__(self, tree):
|
|
"""Construct an instance of test plugin."""
|
|
|
|
def run(self):
|
|
"""Do nothing."""
|