Skip to content

Commit 9cbc3c4

Browse files
committed
Add noqa to scaffolding for CI
1 parent ef759da commit 9cbc3c4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from django.contrib import admin
1+
from django.contrib import admin # noqa: F401
22

33
# Register your models here.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from django.db import models
1+
from django.db import models # noqa: F401
22

33
# Create your models here.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from django.test import TestCase
1+
from django.test import TestCase # noqa: F401
22

33
# Create your tests here.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from django.shortcuts import render
1+
from django.shortcuts import render # noqa: F401
22

33
# Create your views here.

0 commit comments

Comments
 (0)