mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-30 10:46:54 +00:00
16 lines
382 B
Python
16 lines
382 B
Python
"""Module that is off sys.path by default, for testing local-plugin-paths."""
|
|
|
|
|
|
class ExtensionTestPlugin2(object):
|
|
"""Extension test plugin in its own directory."""
|
|
|
|
name = 'ExtensionTestPlugin2'
|
|
version = '1.0.0'
|
|
|
|
def __init__(self, tree):
|
|
"""Construct an instance of test plugin."""
|
|
pass
|
|
|
|
def run(self):
|
|
"""Do nothing."""
|
|
pass
|