Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandro-angulo committed Jul 16, 2020
1 parent 88a9bb0 commit bcacc86
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 8 deletions.
1 change: 0 additions & 1 deletion pylint_django/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@
INSTALLED_APPS = [
'test_app',
]

3 changes: 2 additions & 1 deletion pylint_django/tests/input/models/author.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@


class Author(models.Model):
pass
class Meta:
app_label = 'test_app'
6 changes: 1 addition & 5 deletions pylint_django/tests/input/test_app/models.py
Original file line number Diff line number Diff line change
@@ -1,5 +1 @@
from django.db import models


class Author(models.Model):
pass
from models.author import Author # noqa: F401
1 change: 0 additions & 1 deletion pylint_django/transforms/foreignkey.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from itertools import chain
from importlib.util import find_spec

from astroid import (
MANAGER, nodes, InferenceError, inference_tip,
Expand Down

0 comments on commit bcacc86

Please sign in to comment.