Skip to content

Commit 36a411c

Browse files
committed
remove debugging lines
1 parent f9bec1d commit 36a411c

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/snapred/backend/recipe/algorithm/__init__.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,16 @@ def loadModule(x):
1212
from mantid.api import AlgorithmFactory
1313
from mantid.simpleapi import _create_algorithm_function
1414

15-
print(f"LOADING {x}")
1615
for i in range(30):
1716
try:
1817
module = importlib.import_module(f"{__name__}.{x}", x)
1918
break
2019
except ImportError as e:
2120
y = str(e).split("'")[1]
22-
print(f"FAILED LOADING {e.name} needed for {x} : {y}")
2321
if y in all_module_names:
2422
loadModule(y)
2523
else:
26-
# try:
2724
importlib.import_module(e.name)
28-
# except:
29-
# print(f"STILL CAN'T LOAD {e.name}")
30-
# break
3125
continue
3226

3327
# get just the class name

0 commit comments

Comments
 (0)