@@ -782,8 +782,8 @@ def test_dbnstore_iterable(
782782 dbnstore = DBNStore .from_bytes (data = stub_data )
783783
784784 record_list : list [DBNRecord ] = list (dbnstore )
785- first : MBOMsg = record_list [0 ] # type: ignore
786- second : MBOMsg = record_list [1 ] # type: ignore
785+ first : MBOMsg = record_list [0 ]
786+ second : MBOMsg = record_list [1 ]
787787
788788 # Assert
789789 assert first .hd .length == 14
@@ -882,9 +882,7 @@ def test_dbnstore_buffer_short(
882882 """
883883 # Arrange
884884 dbn_stub_data = (
885- zstandard .ZstdDecompressor ()
886- .stream_reader (test_data (Dataset .GLBX_MDP3 , Schema .MBO ))
887- .read ()
885+ zstandard .ZstdDecompressor ().stream_reader (test_data (Dataset .GLBX_MDP3 , Schema .MBO )).read ()
888886 )
889887
890888 # Act
@@ -917,9 +915,7 @@ def test_dbnstore_buffer_long(
917915 """
918916 # Arrange
919917 dbn_stub_data = (
920- zstandard .ZstdDecompressor ()
921- .stream_reader (test_data (Dataset .GLBX_MDP3 , Schema .MBO ))
922- .read ()
918+ zstandard .ZstdDecompressor ().stream_reader (test_data (Dataset .GLBX_MDP3 , Schema .MBO )).read ()
923919 )
924920
925921 # Act
@@ -952,9 +948,7 @@ def test_dbnstore_buffer_rewind(
952948 """
953949 # Arrange
954950 dbn_stub_data = (
955- zstandard .ZstdDecompressor ()
956- .stream_reader (test_data (Dataset .GLBX_MDP3 , Schema .MBO ))
957- .read ()
951+ zstandard .ZstdDecompressor ().stream_reader (test_data (Dataset .GLBX_MDP3 , Schema .MBO )).read ()
958952 )
959953
960954 # Act
@@ -989,9 +983,7 @@ def test_dbnstore_to_ndarray_with_count(
989983 """
990984 # Arrange
991985 dbn_stub_data = (
992- zstandard .ZstdDecompressor ()
993- .stream_reader (test_data (Dataset .GLBX_MDP3 , schema ))
994- .read ()
986+ zstandard .ZstdDecompressor ().stream_reader (test_data (Dataset .GLBX_MDP3 , schema )).read ()
995987 )
996988
997989 # Act
@@ -1074,9 +1066,7 @@ def test_dbnstore_to_ndarray_with_schema(
10741066 """
10751067 # Arrange
10761068 dbn_stub_data = (
1077- zstandard .ZstdDecompressor ()
1078- .stream_reader (test_data (Dataset .GLBX_MDP3 , schema ))
1079- .read ()
1069+ zstandard .ZstdDecompressor ().stream_reader (test_data (Dataset .GLBX_MDP3 , schema )).read ()
10801070 )
10811071
10821072 # Act
@@ -1210,9 +1200,7 @@ def test_dbnstore_to_df_with_count(
12101200 """
12111201 # Arrange
12121202 dbn_stub_data = (
1213- zstandard .ZstdDecompressor ()
1214- .stream_reader (test_data (Dataset .GLBX_MDP3 , schema ))
1215- .read ()
1203+ zstandard .ZstdDecompressor ().stream_reader (test_data (Dataset .GLBX_MDP3 , schema )).read ()
12161204 )
12171205
12181206 # Act
0 commit comments