From d1f3c4d35a33bb378cf851883bdb59a33eae7aff Mon Sep 17 00:00:00 2001 From: ariel1899 Date: Thu, 16 Apr 2020 15:08:04 -0400 Subject: [PATCH] Fixing pylint --- graphene_django/types.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/graphene_django/types.py b/graphene_django/types.py index 1741e9b..8322cec 100644 --- a/graphene_django/types.py +++ b/graphene_django/types.py @@ -16,7 +16,12 @@ from graphene_django.utils.utils import auth_resolver from .converter import convert_django_field_with_choices from .registry import Registry, get_global_registry from .settings import graphene_settings -from .utils import DJANGO_FILTER_INSTALLED, get_model_fields, is_valid_django_model, camelize +from .utils import ( + DJANGO_FILTER_INSTALLED, + camelize, + get_model_fields, + is_valid_django_model, +) if six.PY3: from typing import Type