File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -183,16 +183,16 @@ def delete_snapshots(
183
183
"""
184
184
raise NotImplementedError
185
185
186
- def _pre_read (self , * , index : "SnapshotIndex" = 0 ) -> None :
186
+ def _pre_read (self , * , index : "SnapshotIndex" = 0 ) -> None : # noqa: B027
187
187
pass
188
188
189
- def _post_read (self , * , index : "SnapshotIndex" = 0 ) -> None :
189
+ def _post_read (self , * , index : "SnapshotIndex" = 0 ) -> None : # noqa: B027
190
190
pass
191
191
192
192
def _pre_write (self , * , data : "SerializedData" , index : "SnapshotIndex" = 0 ) -> None :
193
193
self .__ensure_snapshot_dir (index = index )
194
194
195
- def _post_write (
195
+ def _post_write ( # noqa: B027
196
196
self , * , data : "SerializedData" , index : "SnapshotIndex" = 0
197
197
) -> None :
198
198
pass
@@ -390,7 +390,7 @@ def __strip_ends(self, line: str) -> str:
390
390
return line .rstrip ("" .join (self ._ends .keys ()))
391
391
392
392
393
- class SnapshotComparator ( ABC ) :
393
+ class SnapshotComparator :
394
394
def matches (
395
395
self ,
396
396
* ,
You can’t perform that action at this time.
0 commit comments