Skip to content
Snippets Groups Projects
Commit 71ff9976 authored by Cain, Payton David's avatar Cain, Payton David Committed by Jeremy M Fee
Browse files

Change __init__ imports

parent 8c8778cd
No related branches found
No related tags found
No related merge requests found
......@@ -10,11 +10,11 @@ from .AlgorithmException import AlgorithmException
# algorithms
from .AdjustedAlgorithm import AdjustedAlgorithm
from .AverageAlgorithm import AverageAlgorithm
from .DbDtAlgorithm import DbDtAlgorithm
from .DeltaFAlgorithm import DeltaFAlgorithm
from .FilterAlgorithm import FilterAlgorithm
from .SqDistAlgorithm import SqDistAlgorithm
from .XYZAlgorithm import XYZAlgorithm
from .DBDTAlgorithm import DBDTAlgorithm
# algorithms is used by Controller to auto generate arguments
......@@ -22,11 +22,11 @@ algorithms = {
"identity": Algorithm,
"adjusted": AdjustedAlgorithm,
"average": AverageAlgorithm,
"dbdt": DbDtAlgorithm,
"deltaf": DeltaFAlgorithm,
"filter": FilterAlgorithm,
"sqdist": SqDistAlgorithm,
"xyz": XYZAlgorithm,
"dbdt": DBDTAlgorithm,
}
......@@ -37,9 +37,9 @@ __all__ = [
# algorithms
"AdjustedAlgorithm",
"AverageAlgorithm",
"DbDtAlgorithm",
"DeltaFAlgorithm",
"FilterAlgorithm",
"SqDistAlgorithm",
"XYZAlgorithm",
"DBDTAlgorithm",
]
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