Skip to content

Commit ed0ae85

Browse files
committed
Fix pylint warning
1 parent 352967e commit ed0ae85

File tree

4 files changed

+4
-8
lines changed

4 files changed

+4
-8
lines changed

core/admin.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
from django.contrib import admin
2-
3-
# Register your models here.

core/apps.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,7 @@
22

33

44
class CoreConfig(AppConfig):
5+
"""Core app config"""
6+
57
default_auto_field = "django.db.models.BigAutoField"
68
name = "core"

core/tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from datetime import date
2-
31
from django.test import TestCase
42

53
from .models import Student
@@ -8,6 +6,8 @@
86

97

108
class StudentModelTest(TestCase):
9+
"""Student model test"""
10+
1111
def setUp(self):
1212
self.student = Student.objects.create(
1313
first_name="John",

core/views.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +0,0 @@
1-
from django.shortcuts import render
2-
3-
# Create your views here.

0 commit comments

Comments
 (0)