update user input
Browse files- maintenance_flow.py +2 -2
maintenance_flow.py
CHANGED
|
@@ -37,9 +37,9 @@ def request_wells_maintenance(maintenance_type):
|
|
| 37 |
|
| 38 |
if maintenance_type == "wellplate_maintenance":
|
| 39 |
generate_empty_well()
|
| 40 |
-
msg_out = f"Updating wells status on DB by {user_input}"
|
| 41 |
logger.info(msg_out)
|
| 42 |
|
| 43 |
-
insert_maintenance_log(maintenance_type, user_input)
|
| 44 |
|
| 45 |
return msg_out
|
|
|
|
| 37 |
|
| 38 |
if maintenance_type == "wellplate_maintenance":
|
| 39 |
generate_empty_well()
|
| 40 |
+
msg_out = f"Updating wells status on DB by {user_input.name}"
|
| 41 |
logger.info(msg_out)
|
| 42 |
|
| 43 |
+
insert_maintenance_log(maintenance_type, user_input.name)
|
| 44 |
|
| 45 |
return msg_out
|