Skip to content

Commit b9d10c4

Browse files
Lock file maintenance (#475)
* Lock file maintenance * Fix kwargs usage error of Django function Signed-off-by: Matt Norton <matt@carrotmanmatt.com> --------- Signed-off-by: Matt Norton <matt@carrotmanmatt.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Matt Norton <matt@carrotmanmatt.com>
1 parent 17f7f10 commit b9d10c4

2 files changed

Lines changed: 355 additions & 350 deletions

File tree

db/core/models/utils.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,12 @@ def save( # type: ignore[override]
5656
) -> None:
5757
self.full_clean()
5858

59-
return super().save(force_insert, force_update, using, update_fields)
59+
return super().save(
60+
force_insert=force_insert,
61+
force_update=force_update,
62+
using=using,
63+
update_fields=update_fields,
64+
)
6065

6166
def update(
6267
self,

0 commit comments

Comments
 (0)