Skip to content
Snippets Groups Projects
Commit 3c4eebb1 authored by Jameson Rollins's avatar Jameson Rollins
Browse files

Merge branch 'rearrange_plugins' into 'master'

move history.py plugin to end as takes longest and has no dependances

Closes #175

See merge request jameson.rollins/locklost!106
parents fc0e63fc 707cf6e9
No related branches found
No related tags found
No related merge requests found
......@@ -25,9 +25,6 @@ def register_plugin(func):
from .discover import discover_data
register_plugin(discover_data)
from .history import find_previous_state
register_plugin(find_previous_state)
from .refine import refine_time
register_plugin(refine_time)
......@@ -70,3 +67,6 @@ register_plugin(check_fss)
# add last since this needs to wait for additional data
from .seismic import check_seismic
register_plugin(check_seismic)
from .history import find_previous_state
register_plugin(find_previous_state)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment