Skip to content

Commit f23d166

Browse files
ajrbyersjoemull
authored andcommitted
chore: ruff formating
1 parent d8b3832 commit f23d166

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

src/review/migrations/0025_alter_revisionrequest_actions.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@
44

55

66
class Migration(migrations.Migration):
7-
87
dependencies = [
9-
('review', '0024_remove_frozenreviewformelement_width_and_more'),
8+
("review", "0024_remove_frozenreviewformelement_width_and_more"),
109
]
1110

1211
operations = [
1312
migrations.AlterField(
14-
model_name='revisionrequest',
15-
name='actions',
16-
field=models.ManyToManyField(blank=True, to='review.revisionaction'),
13+
model_name="revisionrequest",
14+
name="actions",
15+
field=models.ManyToManyField(blank=True, to="review.revisionaction"),
1716
),
1817
]

src/review/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,7 @@ class RevisionRequest(models.Model):
629629
) # Note from Author to Editor
630630
actions = models.ManyToManyField(
631631
RevisionAction,
632-
blank=True,
632+
blank=True,
633633
) # List of actions Author took during Revision Request
634634
type = models.CharField(
635635
max_length=20,

0 commit comments

Comments
 (0)