python: Add noqa comments for the specific star imports we allow.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2020-06-10 17:53:32 -07:00
committed by Tim Abbott
parent 491fb3c3cf
commit 0e5946ee5a
4 changed files with 12 additions and 12 deletions

View File

@@ -16,8 +16,8 @@
#
########################################################################
from .configured_settings import * # isort: skip
from .computed_settings import * # isort: skip
from .configured_settings import * # noqa: F401,F403 isort: skip
from .computed_settings import * # noqa: F401,F403 isort: skip
# Do not add any code after these wildcard imports! Add it to
# computed_settings instead.