Skip to content
This repository was archived by the owner on Oct 20, 2024. It is now read-only.

Commit 1827c83

Browse files
committed
Removed ternary operator for clarity.
1 parent ed84b58 commit 1827c83

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

positions/fields.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ def pre_save(self, model_instance, add):
5555
current, updated = getattr(model_instance, cache_name)
5656

5757
if add:
58-
current, updated = None, updated if updated is not None else current
58+
if updated is None:
59+
updated = current
60+
current = None
5961

6062
# existing instance, position not modified; no cleanup required
6163
if current is not None and updated is None:

0 commit comments

Comments
 (0)