remove raise for pause flow
Browse files- DB_utls.py +2 -2
DB_utls.py
CHANGED
|
@@ -81,8 +81,8 @@ def find_unused_wells():
|
|
| 81 |
dbclient.close()
|
| 82 |
|
| 83 |
# Check if there are any empty wells
|
| 84 |
-
if len(empty_wells) == 0:
|
| 85 |
-
|
| 86 |
#print(empty_wells)
|
| 87 |
return empty_wells
|
| 88 |
|
|
|
|
| 81 |
dbclient.close()
|
| 82 |
|
| 83 |
# Check if there are any empty wells
|
| 84 |
+
#if len(empty_wells) == 0:
|
| 85 |
+
# raise ValueError("No empty wells found")
|
| 86 |
#print(empty_wells)
|
| 87 |
return empty_wells
|
| 88 |
|