mirror of
https://github.com/ae-utbm/sith.git
synced 2025-07-09 19:40:19 +00:00
ruff rule C4
This commit is contained in:
@ -100,6 +100,6 @@ class Migration(migrations.Migration):
|
||||
),
|
||||
),
|
||||
migrations.AlterUniqueTogether(
|
||||
name="operation", unique_together=set([("number", "journal")])
|
||||
name="operation", unique_together={("number", "journal")}
|
||||
),
|
||||
]
|
||||
|
@ -45,6 +45,6 @@ class Migration(migrations.Migration):
|
||||
),
|
||||
),
|
||||
migrations.AlterUniqueTogether(
|
||||
name="label", unique_together=set([("name", "club_account")])
|
||||
name="label", unique_together={("name", "club_account")}
|
||||
),
|
||||
]
|
||||
|
Reference in New Issue
Block a user