gaurav1999 commented on a change in pull request #7501:
URL:
https://github.com/apache/incubator-superset/pull/7501#discussion_r436335813
##########
File path: superset/utils/core.py
##########
@@ -1203,3 +1203,10 @@ class DatasourceName(NamedTuple):
def get_stacktrace():
if current_app.config.get("SHOW_STACKTRACE"):
return traceback.format_exc()
+
+
+def merge_dicts(*args) -> dict:
+ target: Dict[Any, Any] = dict()
+ for d in args:
Review comment:
should we use a None check here ?,
I was testing this on my own version and turned out
```SupersetModelView.method_permission_name ``` did not existed because of some
rebase error.
Thanks
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]