forked from M-Labs/artiq
artiq_influxdb: Support append() in dataset _Mock
This went undetected as append mods were not actually in use in any part of the codebase previously.
This commit is contained in:
parent
bf84226c7d
commit
56b2e0c262
|
@ -131,6 +131,9 @@ class _Mock:
|
||||||
def __delitem__(self, k):
|
def __delitem__(self, k):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
def append(self, v):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
class Datasets:
|
class Datasets:
|
||||||
def __init__(self, filter_function, writer, init):
|
def __init__(self, filter_function, writer, init):
|
||||||
|
|
Loading…
Reference in New Issue