Skip to content

Commit

Permalink
ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
JJFlorian committed Apr 4, 2024
1 parent 2f7e829 commit 3bd1f89
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 10 deletions.
11 changes: 5 additions & 6 deletions api/migrations/0027_remove_userprofile_first_name_and_more.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,17 @@


class Migration(migrations.Migration):

dependencies = [
('api', '0026_alter_uploadtask_status'),
("api", "0026_alter_uploadtask_status"),
]

operations = [
migrations.RemoveField(
model_name='userprofile',
name='first_name',
model_name="userprofile",
name="first_name",
),
migrations.RemoveField(
model_name='userprofile',
name='last_name',
model_name="userprofile",
name="last_name",
),
]
7 changes: 3 additions & 4 deletions gmn/migrations/0017_alter_gmn_color.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@


class Migration(migrations.Migration):

dependencies = [
('gmn', '0016_gmn_color'),
("gmn", "0016_gmn_color"),
]

operations = [
migrations.AlterField(
model_name='gmn',
name='color',
model_name="gmn",
name="color",
field=models.CharField(blank=True, default=None, max_length=7, null=True),
),
]

0 comments on commit 3bd1f89

Please sign in to comment.