1
0
Fork 0

Ignore ungrouped-imports pylint error where it clashes with isort (C0412)

There are clashes between the positioning and ordering of our imports
between pylint and isort, just ignoring them on the pylint side for now.

Based on: librespacefoundation/satnogs/satnogs-db@fc8f9a8c

Signed-off-by: Fabian P. Schmidt <kerel@mailbox.org>
merge-requests/816/head
Fabian P. Schmidt 2019-11-30 21:13:02 +01:00 committed by Alfredos-Panagiotis Damkalis
parent 602b4fee84
commit 13da259255
3 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,6 @@ ignored-argument-names=args|kwargs
[MESSAGES CONTROL]
disable=
C0412,
E1101,
E1121,
R0401,

View File

@ -7,7 +7,8 @@ from django.contrib.auth.models import Group
from django.db import transaction
from django.test import Client, TestCase
from django.utils.timezone import now
from factory import fuzzy
# C0412 below clashes with isort
from factory import fuzzy # pylint: disable=C0412
import pytest
from network.base.models import ANTENNA_BANDS, ANTENNA_TYPES, \

View File

@ -4,7 +4,8 @@ import datetime
import factory
from django.test import Client, TestCase
from django.utils.timezone import utc
from factory import fuzzy
# C0412 below clashes with isort
from factory import fuzzy # pylint: disable=C0412
import pytest
from network.users.models import User