Skip to content

Commit 3839bb1

Browse files
committed
Refactor: 코드 linter 적용
1 parent bf02aa1 commit 3839bb1

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

pyconweb2022/sponsor/migrations/0004_remove_sponsor_creator_remove_sponsor_manager_id.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
class Migration(migrations.Migration):
77

88
dependencies = [
9-
('sponsor', '0003_sponsorproxymodel'),
9+
("sponsor", "0003_sponsorproxymodel"),
1010
]
1111

1212
operations = [
1313
migrations.RemoveField(
14-
model_name='sponsor',
15-
name='creator',
14+
model_name="sponsor",
15+
name="creator",
1616
),
1717
migrations.RemoveField(
18-
model_name='sponsor',
19-
name='manager_id',
18+
model_name="sponsor",
19+
name="manager_id",
2020
),
2121
]

pyconweb2022/sponsor/migrations/0005_sponsor_eng_desc.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66
class Migration(migrations.Migration):
77

88
dependencies = [
9-
('sponsor', '0004_remove_sponsor_creator_remove_sponsor_manager_id'),
9+
("sponsor", "0004_remove_sponsor_creator_remove_sponsor_manager_id"),
1010
]
1111

1212
operations = [
1313
migrations.AddField(
14-
model_name='sponsor',
15-
name='eng_desc',
16-
field=models.TextField(blank=True, help_text='후원사 영문설명입니다. 이 설명은 홈페이지에 게시됩니다.', null=True),
14+
model_name="sponsor",
15+
name="eng_desc",
16+
field=models.TextField(
17+
blank=True, help_text="후원사 영문설명입니다. 이 설명은 홈페이지에 게시됩니다.", null=True
18+
),
1719
),
1820
]

0 commit comments

Comments
 (0)