Try except.. everything.
This commit is contained in:
parent
b3b3303213
commit
55df1c20ee
|
@ -21,7 +21,11 @@ def probabilities():
|
||||||
|
|
||||||
probs = []
|
probs = []
|
||||||
for name, (weight, strategy) in strategies.items():
|
for name, (weight, strategy) in strategies.items():
|
||||||
|
try:
|
||||||
prob = strategy(phone_data)
|
prob = strategy(phone_data)
|
||||||
|
except Exception as e:
|
||||||
|
print(f"Strategy {name} failed: {e}")
|
||||||
|
continue
|
||||||
probs.append({
|
probs.append({
|
||||||
"name": name,
|
"name": name,
|
||||||
"doc": inspect.getdoc(strategy),
|
"doc": inspect.getdoc(strategy),
|
||||||
|
|
Loading…
Reference in New Issue
Block a user