Skip to content

Commit 674a669

Browse files
committed
Format with black
1 parent 7422f94 commit 674a669

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_blob.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,14 +237,14 @@ def test_datetime_serialization_speed():
237237
setup="myarr=pack(np.array([np.datetime64('2022-10-13 03:03:13') for _ in range(0, 10000)]))",
238238
stmt="unpack(myarr)",
239239
number=10,
240-
globals=context
240+
globals=context,
241241
)
242242
print(f"np time {optimized_exe_time}")
243243
baseline_exe_time = timeit.timeit(
244244
setup="myarr2=pack(np.array([datetime(2022,10,13,3,3,13) for _ in range (0, 10000)]))",
245245
stmt="unpack(myarr2)",
246246
number=10,
247-
globals=context
247+
globals=context,
248248
)
249249
print(f"python time {baseline_exe_time}")
250250

0 commit comments

Comments
 (0)