This is an automated email from the ASF dual-hosted git repository.
villebro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git
The following commit(s) were added to refs/heads/master by this push:
new 55c2892 Fix: bring back type ignore for config import (#11333)
55c2892 is described below
commit 55c2892e9b390942ce8f87e95025cc9995ee1199
Author: Kasia Kucharczyk <[email protected]>
AuthorDate: Mon Oct 19 22:11:07 2020 +0200
Fix: bring back type ignore for config import (#11333)
---
superset/config.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/superset/config.py b/superset/config.py
index f64e284..8554e18 100644
--- a/superset/config.py
+++ b/superset/config.py
@@ -956,7 +956,7 @@ if CONFIG_PATH_ENV_VAR in os.environ:
elif importlib.util.find_spec("superset_config") and not is_test():
try:
import superset_config # pylint: disable=import-error
- from superset_config import * # pylint:
disable=import-error,wildcard-import,unused-wildcard-import
+ from superset_config import * # type: ignore # pylint:
disable=import-error,wildcard-import,unused-wildcard-import
print(f"Loaded your LOCAL configuration at
[{superset_config.__file__}]")
except Exception: