chore: consolidate the Superset python package metadata (#27884)

This commit is contained in:
Maxime Beauchemin
2024-04-15 14:44:47 -07:00
committed by GitHub
parent 99c414e4da
commit c225e17a75
12 changed files with 216 additions and 246 deletions

View File

@@ -185,7 +185,7 @@ def create_dashboard_report(dashboard, extra, **kwargs):
extra={
"dashboard": extra,
},
**kwargs
**kwargs,
)
error = None

View File

@@ -30,7 +30,7 @@ class CustomEncFieldAdapter(AbstractEncryptedFieldAdapter):
self,
app_config: Optional[dict[str, Any]],
*args: list[Any],
**kwargs: Optional[dict[str, Any]]
**kwargs: Optional[dict[str, Any]],
) -> TypeDecorator:
if app_config:
return StringEncryptedType(*args, app_config["SECRET_KEY"], **kwargs)