fix: fix 'wildcard-import' and 'unused-wildcard-import' for pylint
This commit is contained in:
parent
7e532e2472
commit
d362a1cbd5
2 changed files with 2 additions and 4 deletions
|
@ -41,7 +41,5 @@ disable=fixme,
|
||||||
unnecessary-lambda-assignment,
|
unnecessary-lambda-assignment,
|
||||||
unspecified-encoding,
|
unspecified-encoding,
|
||||||
unused-argument,
|
unused-argument,
|
||||||
unused-wildcard-import,
|
|
||||||
use-a-generator,
|
use-a-generator,
|
||||||
use-dict-literal,
|
use-dict-literal,
|
||||||
wildcard-import,
|
|
||||||
|
|
|
@ -51,8 +51,8 @@ This module contains the following references:
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from webhelpers2.html import *
|
from webhelpers2.html import * # pylint: disable=wildcard-import,unused-wildcard-import
|
||||||
from webhelpers2.html.tags import *
|
from webhelpers2.html.tags import * # pylint: disable=wildcard-import,unused-wildcard-import
|
||||||
|
|
||||||
from wuttaweb.util import ( # pylint: disable=unused-import
|
from wuttaweb.util import ( # pylint: disable=unused-import
|
||||||
get_liburl,
|
get_liburl,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue