update find unused wells
Browse files- DB_utls.py +2 -2
DB_utls.py
CHANGED
|
@@ -66,8 +66,8 @@ def find_unused_wells():
|
|
| 66 |
df = pd.DataFrame(response)
|
| 67 |
|
| 68 |
# Extract the "well" column as a list
|
| 69 |
-
if "well" not in df.columns:
|
| 70 |
-
|
| 71 |
# Sort obtained list
|
| 72 |
def well_sort_key(well):
|
| 73 |
row = well[0] # A, B, C, ...
|
|
|
|
| 66 |
df = pd.DataFrame(response)
|
| 67 |
|
| 68 |
# Extract the "well" column as a list
|
| 69 |
+
#if "well" not in df.columns:
|
| 70 |
+
# raise ValueError("No available wells.")
|
| 71 |
# Sort obtained list
|
| 72 |
def well_sort_key(well):
|
| 73 |
row = well[0] # A, B, C, ...
|