mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #21302 -- Fixed unused imports and import *.
This commit is contained in:
parent
9f76ea1eaa
commit
36ded01527
116 changed files with 248 additions and 181 deletions
|
@ -1 +1 @@
|
|||
from django.db import modelz
|
||||
from django.db import modelz # NOQA
|
||||
|
|
|
@ -1,7 +1,5 @@
|
|||
from django.db import models
|
||||
|
||||
from ..admin import foo
|
||||
|
||||
|
||||
class Bar(models.Model):
|
||||
name = models.CharField(max_length=5)
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
from ..complex_app.models.bar import Bar
|
||||
|
||||
__all__ = ['Bar']
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue