Skip to content

Commit 6980d3c

Browse files
committed
lint
1 parent b0b3114 commit 6980d3c

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

sponsor/migrations/0002_sponsor_bank_book_file_sponsor_manager_tel_and_more.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Generated by Django 4.1.5 on 2023-02-11 15:16
22

33
from django.db import migrations, models
4+
45
import sponsor.models
56

67

sponsor/models.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,11 @@ def __str__(self):
4949
def registration_file_upload_to(instance, filename):
5050
return f"sponsor/business_registration/{instance.id}/{filename}"
5151

52+
5253
def bank_book_file_upload_to(instance, filename):
5354
return f"sponsor/bank_book/{instance.id}/{filename}"
5455

56+
5557
def logo_image_upload_to(instance, filename):
5658
return f"sponsor/logo/{instance.id}/{filename}"
5759

sponsor/serializers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Meta:
1414
"manager_tel", # 상세에만 포함되는 필드
1515
"business_registration_number", # 상세에만 포함되는 필드
1616
"business_registration_file", # 상세에만 포함되는 필드
17-
"bank_book_file", # 상세에만 포함되는 필드
17+
"bank_book_file", # 상세에만 포함되는 필드
1818
"url",
1919
"logo_image",
2020
"level",

0 commit comments

Comments
 (0)