mirror of
https://github.com/arcan1s/ahriman.git
synced 2026-07-15 15:21:08 +00:00
93ce7f9a51
* move argument parsers to handlers themselves * use hatchling instead of flit * Revert "use hatchling instead of flit" This reverts commit d18d146d796bef01f7bba9003bc634946649f9aa. * add package-splitt script * replace simplify walk method * split packages * explicitly install packages * separate support triggers from main package * add docs examples * sort actions * docs update * add metapackage * review fixes
10 lines
270 B
Python
10 lines
270 B
Python
from ahriman.application.handlers.triggers import Triggers
|
|
from ahriman.application.handlers.triggers_support import TriggersSupport
|
|
|
|
|
|
def test_arguments() -> None:
|
|
"""
|
|
must define own arguments
|
|
"""
|
|
assert TriggersSupport.arguments != Triggers.arguments
|