We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcdf573 commit e2332bcCopy full SHA for e2332bc
odmtools/odmservices/edit_service.py
@@ -474,7 +474,9 @@ def updateValues(self, values):
474
:param values: pandas Dataframe - must contain a "datavalues" column and a date time as the index
475
:return:
476
"""
477
-
+ if values is None:
478
+ print("please send in a valid DataFrame object")
479
+ return
480
update_list = [{"value": row["DataValue"], "id": index} for index, row in values.iterrows()]
481
482
ids = values.index.tolist()
0 commit comments