Skip to content

Commit c3eea35

Browse files
committed
There is a problem with false-positives for wrong-import messages right now with pylint 1.5 so just ignore them for now
1 parent 3521f57 commit c3eea35

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/input/func_noerror_foreign_key_ids.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Checks that Pylint does not complain about foreign key id access
33
"""
4-
# pylint: disable=C0111,W5101
4+
# pylint: disable=C0111,W5101,wrong-import-position
55
from django.db import models
66

77

test/input/func_noerror_model_unicode_callable.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Ensures that django models without a __unicode__ method are flagged
33
"""
4-
# pylint: disable=C0111
4+
# pylint: disable=C0111,wrong-import-position
55

66
from django.db import models
77

0 commit comments

Comments
 (0)