diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-14 00:12:58 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2024-07-14 00:12:58 -0400 |
commit | 935c05ae3b0421537e1d4aa06b24ac5fad869661 (patch) | |
tree | 66cf6b8f93c4a2fcc97df295a77831a4455a11c8 /qolab/tsdb/__init__.py | |
parent | 194bcbf4f304bfe8615fb872670057a367e723cb (diff) | |
download | qolab-935c05ae3b0421537e1d4aa06b24ac5fad869661.tar.gz qolab-935c05ae3b0421537e1d4aa06b24ac5fad869661.zip |
fixed doc string
Diffstat (limited to 'qolab/tsdb/__init__.py')
-rw-r--r-- | qolab/tsdb/__init__.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/qolab/tsdb/__init__.py b/qolab/tsdb/__init__.py index 0981219..f4d703c 100644 --- a/qolab/tsdb/__init__.py +++ b/qolab/tsdb/__init__.py @@ -39,6 +39,11 @@ class Ingester(utsdb.Ingester): def tsdb_append_metric_for_class_setter_or_getter(tsdb_logger=None): + """Send results of setters and getters to TSDB. + + Intended to be used as decorator for setters and getters, + i.e. it expect the wrapped function to be something like getXXX or setXXX. + """ def wrap(f): @functools.wraps(f) def wrapper(*args, **kwds): |