3
0
Fork 0

fix: fix 'wildcard-import' and 'unused-wildcard-import' for pylint

This commit is contained in:
Lance Edgar 2025-08-31 22:05:26 -05:00
parent 7e532e2472
commit d362a1cbd5
2 changed files with 2 additions and 4 deletions

View file

@ -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,

View file

@ -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,