Skip to content

Commit

Permalink
Remove SystemExit and RuntimeError from discover.
Browse files Browse the repository at this point in the history
  • Loading branch information
dboulware committed Feb 29, 2024
1 parent 8f7d6e3 commit 6df86d0
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions scos_actions/discover/__init__.py
Original file line number Diff line number Diff line change
@@ -1,25 +1,19 @@
from scos_actions.actions import action_classes
from scos_actions.actions.logger import Logger
from scos_actions.actions.monitor_sigan import MonitorSignalAnalyzer
from scos_actions.actions.runtime_error_action import RuntimeErrorAction
from scos_actions.actions.sync_gps import SyncGps
from scos_actions.actions.system_exit_action import SystemExitAction
from scos_actions.discover.yaml import load_from_yaml
from scos_actions.settings import ACTION_DEFINITIONS_DIR

actions = {
"logger": Logger(),
"RuntimeError": RuntimeErrorAction(),
"SystemExit": SystemExitAction(),
}
test_actions = {
"test_sync_gps": SyncGps(parameters={"name": "test_sync_gps"}),
"test_monitor_sigan": MonitorSignalAnalyzer(
parameters={"name": "test_monitor_sigan"}
),
"logger": Logger(),
"RuntimeError": RuntimeErrorAction(),
"SystemExit": SystemExitAction(),
}


Expand Down

0 comments on commit 6df86d0

Please sign in to comment.