aboutsummaryrefslogtreecommitdiff
path: root/qolab
diff options
context:
space:
mode:
Diffstat (limited to 'qolab')
-rw-r--r--qolab/gui/web.py4
-rw-r--r--qolab/tableflow/__init__.py2
2 files changed, 2 insertions, 4 deletions
diff --git a/qolab/gui/web.py b/qolab/gui/web.py
index b4bc3ad..4952adb 100644
--- a/qolab/gui/web.py
+++ b/qolab/gui/web.py
@@ -105,9 +105,7 @@ class QOLTimeLog(jp.Div):
root.set_classes(panel_div_classes)
dcontrols = jp.Div(a=root)
dcontrols.set_classes(controls_div_classes)
- QOLPushButtonNoUndo(
- a=dcontrols, text="Clear log", click=self._clear_data
- )
+ QOLPushButtonNoUndo(a=dcontrols, text="Clear log", click=self._clear_data)
QOLPushButton(a=dcontrols, text="Replot", click=self._replot)
self.update_interval = QOLParamReadOnly(
label="UpdateInterval", value=5, a=dcontrols
diff --git a/qolab/tableflow/__init__.py b/qolab/tableflow/__init__.py
index 15180ca..c83bd61 100644
--- a/qolab/tableflow/__init__.py
+++ b/qolab/tableflow/__init__.py
@@ -70,7 +70,7 @@ def ilocRowOrAdd(tbl, row):
res[col] = tSub[col].isna()
else:
igood = tSub[col].notna()
- res.loc[igood, col] = (tSub.loc[igood, col] == row[col])
+ res.loc[igood, col] = tSub.loc[igood, col] == row[col]
imissing = tSub[col].isna()
res.loc[imissing, col] = False
res = res.all(axis=1) # which rows coincide