File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ class CMSInfo:
62
62
depth = None
63
63
count = None
64
64
65
- def __init__ (self , args ):
65
+ def __init__ (self , args , ** kwargs ):
66
66
response = dict (zip (map (nativestr , args [::2 ]), args [1 ::2 ]))
67
67
self .width = response ["width" ]
68
68
self .depth = response ["depth" ]
Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ def __init__(
79
79
self .__encoder__ = encoder
80
80
self .__decoder__ = decoder
81
81
82
- def _decode (self , obj ):
82
+ def _decode (self , obj , ** kwargs ):
83
83
"""Get the decoder."""
84
84
if obj is None :
85
85
return obj
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class TSInfo:
23
23
chunk_size = None
24
24
duplicate_policy = None
25
25
26
- def __init__ (self , args ):
26
+ def __init__ (self , args , ** options ):
27
27
"""
28
28
Hold information and statistics on the time-series.
29
29
You can’t perform that action at this time.
0 commit comments