mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-28 11:36:44 +00:00
12 lines
224 B
Python
12 lines
224 B
Python
"""sample of a broken python file that will be ignored on import"""
|
|
from plugin import InvenTreePlugin
|
|
|
|
|
|
class BrokenFileIntegrationPlugin(InvenTreePlugin):
|
|
"""
|
|
An very broken plugin
|
|
"""
|
|
|
|
|
|
aaa = bb # noqa: F821
|