@@ -1119,7 +1119,7 @@ def test__get(self):
11191119 ),
11201120 ]
11211121 )
1122-
1122+
11231123 def test__get_warm_storage (self ):
11241124 # Mock the drio_client
11251125 drio_client = Mock ()
@@ -1139,9 +1139,9 @@ def test__get_warm_storage(self):
11391139 drio_client ,
11401140 labels ,
11411141 storage = "warm" ,
1142- convert_date = True ,
1143- raise_empty = False ,
1144- aggregation_period = "1h" ,
1142+ convert_date = True ,
1143+ raise_empty = False ,
1144+ aggregation_period = "1h" ,
11451145 aggregation_function = "min" ,
11461146 )
11471147
@@ -1168,21 +1168,21 @@ def test__get_warm_storage(self):
11681168 start = "<start-time>" ,
11691169 end = "<end-time>" ,
11701170 aggregation_period = "1h" ,
1171- aggregation_function = "min"
1171+ aggregation_function = "min" ,
11721172 ),
11731173 call (
11741174 "timeseriesid-b" ,
11751175 start = "<start-time>" ,
11761176 end = "<end-time>" ,
11771177 aggregation_period = "1h" ,
1178- aggregation_function = "min"
1178+ aggregation_function = "min" ,
11791179 ),
11801180 call (
11811181 "timeseriesid-c" ,
11821182 start = "<start-time>" ,
11831183 end = "<end-time>" ,
11841184 aggregation_period = "1h" ,
1185- aggregation_function = "min"
1185+ aggregation_function = "min" ,
11861186 ),
11871187 ]
11881188 )
@@ -1201,11 +1201,7 @@ def test__get_warm_defaults(self):
12011201
12021202 # Instantiate DrioDataSource with storage="warm", no overrides
12031203 source = DrioDataSource (
1204- drio_client ,
1205- labels ,
1206- storage = "warm" ,
1207- convert_date = True ,
1208- raise_empty = False
1204+ drio_client , labels , storage = "warm" , convert_date = True , raise_empty = False
12091205 )
12101206
12111207 # Call _get with defaults
@@ -1227,20 +1223,18 @@ def test__get_warm_defaults(self):
12271223 start = "<start>" ,
12281224 end = "<end>" ,
12291225 aggregation_period = "tick" ,
1230- aggregation_function = "mean"
1226+ aggregation_function = "mean" ,
12311227 ),
12321228 call (
12331229 "ts-y" ,
12341230 start = "<start>" ,
12351231 end = "<end>" ,
12361232 aggregation_period = "tick" ,
1237- aggregation_function = "mean"
1233+ aggregation_function = "mean" ,
12381234 ),
12391235 ]
12401236 )
12411237
1242-
1243-
12441238
12451239class Test_NullDataSource :
12461240 def test__init__ (self ):
0 commit comments