Skip to content

Commit ca2d4a4

Browse files
committed
linters
1 parent 6053ccb commit ca2d4a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

aredis_om/model/model.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1283,16 +1283,16 @@ async def delete_all(
12831283
db = cls.db().pipeline(transaction=False)
12841284
else:
12851285
db = pipeline
1286-
1286+
12871287
for model in models:
12881288
await model.delete(model.pk, pipeline=db)
1289-
1289+
12901290
# If the user didn't give us a pipeline, then we need to execute
12911291
# the one we just created.
12921292
if pipeline is None:
12931293
result = await db.execute()
12941294
pipeline_verifier(result, expected_responses=len(models))
1295-
1295+
12961296
return len(models)
12971297

12981298
@classmethod

0 commit comments

Comments
 (0)