chore(ci): fix numpy type errors and revert #22610 (#22782)

This commit is contained in:
Ville Brofeldt
2023-01-19 14:53:48 +02:00
committed by GitHub
parent 39c96d0568
commit 577ac81686
29 changed files with 373 additions and 196 deletions

View File

@@ -228,7 +228,10 @@ class DatasetEditor(BaseSupersetView):
@has_access
@permission_name("read")
def root(self) -> FlaskResponse:
return super().render_app_template()
dev = request.args.get("testing")
if dev is not None:
return super().render_app_template()
return redirect("/")
@expose("/<pk>", methods=["GET"])
@has_access