mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-04 14:28:48 +00:00
13 lines
282 B
Python
13 lines
282 B
Python
"""sample implementation for IntegrationPlugin"""
|
|
from plugin.integration import IntegrationPluginBase
|
|
|
|
aaa = bb # noqa: F821
|
|
|
|
|
|
class BrokenIntegrationPlugin(IntegrationPluginBase):
|
|
"""
|
|
An very broken integration plugin
|
|
"""
|
|
|
|
PLUGIN_NAME = "BrokenIntegrationPlugin"
|