Skip to content

Commit

Permalink
adjust linting
Browse files Browse the repository at this point in the history
  • Loading branch information
fmigneault committed Jun 18, 2020
1 parent 1c9326b commit 28c8137
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion magpie/helpers/register_default_users.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__)
Expand Down

0 comments on commit 28c8137

Please sign in to comment.