aboutsummaryrefslogtreecommitdiff
path: root/qolab/tsdb/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'qolab/tsdb/__init__.py')
-rw-r--r--qolab/tsdb/__init__.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/qolab/tsdb/__init__.py b/qolab/tsdb/__init__.py
index 84bc060..1675537 100644
--- a/qolab/tsdb/__init__.py
+++ b/qolab/tsdb/__init__.py
@@ -92,7 +92,8 @@ 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... nor get..."
+ f"Do not know how to work with {f.__name__}"
+ + ", it is neither setXXX nor getXXX" # noqa: W503
)
ret = f(*args, **kwds)
return ret