We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef759da commit 9cbc3c4Copy full SHA for 9cbc3c4
create-django-project/setup/example/admin.py
@@ -1,3 +1,3 @@
1
-from django.contrib import admin
+from django.contrib import admin # noqa: F401
2
3
# Register your models here.
create-django-project/setup/example/models.py
-from django.db import models
+from django.db import models # noqa: F401
# Create your models here.
create-django-project/setup/example/tests.py
-from django.test import TestCase
+from django.test import TestCase # noqa: F401
# Create your tests here.
create-django-project/setup/example/views.py
-from django.shortcuts import render
+from django.shortcuts import render # noqa: F401
# Create your views here.
0 commit comments