From 28c81379a3ffcf7867285851abf5ab6dac7145fd Mon Sep 17 00:00:00 2001 From: Francis Charette Migneault Date: Thu, 18 Jun 2020 03:43:35 -0400 Subject: [PATCH] adjust linting --- .pylintrc | 2 +- magpie/helpers/register_default_users.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.pylintrc b/.pylintrc index 81137a720..7fc8a75ee 100644 --- a/.pylintrc +++ b/.pylintrc @@ -365,7 +365,7 @@ function-naming-style=snake_case #function-rgx= # Good variable names which should always be accepted, separated by a comma. -good-names=i,j,k,v,ex,x,y,z,f,h,db,kw,_ +good-names=i,j,k,v,ex,x,y,z,f,h,db,kw,ns,_ # Include a hint for the correct naming format with invalid-name. include-naming-hint=no diff --git a/magpie/helpers/register_default_users.py b/magpie/helpers/register_default_users.py index 446fca315..aa9b00b53 100644 --- a/magpie/helpers/register_default_users.py +++ b/magpie/helpers/register_default_users.py @@ -15,7 +15,7 @@ if TYPE_CHECKING: # pylint: disable=W0611,unused-import - from magpie.typedefs import AnySettingsContainer, Str, Optional # noqa: F401 + from magpie.typedefs import AnySettingsContainer, Str # noqa: F401 from typing import Any, AnyStr, Optional, Sequence # noqa: F401 LOGGER = get_logger(__name__)