aboutsummaryrefslogtreecommitdiff
path: root/qolab
diff options
context:
space:
mode:
Diffstat (limited to 'qolab')
-rw-r--r--qolab/tsdb/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/qolab/tsdb/__init__.py b/qolab/tsdb/__init__.py
index b4ea644..e842137 100644
--- a/qolab/tsdb/__init__.py
+++ b/qolab/tsdb/__init__.py
@@ -91,7 +91,7 @@ def tsdb_append_metric_for_class_setter_or_getter(tsdb_logger=None):
def wrapper(*args, **kwds):
if f.__name__[0:3] != "get" and f.__name__[0:3] != "set":
logger.warning(
- f"Do not know how to work with {f.__name__}, it is neither set... or get..."
+ f"Do not know how to work with {f.__name__}, it is neither set... nor get..."
)
ret = f(*args, **kwds)
return ret