Skip to content

Commit

Permalink
Fix formatting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
reesercollins committed Jun 23, 2022
1 parent 3ab06ac commit 82234a3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion superset/datasets/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,11 @@ def import_(self) -> Response:
sync_metrics = request.form.get("sync_metrics") == "true"

command = ImportDatasetsCommand(
contents, passwords=passwords, overwrite=overwrite, sync_columns=sync_columns, sync_metrics=sync_metrics
contents,
passwords=passwords,
overwrite=overwrite,
sync_columns=sync_columns,
sync_metrics=sync_metrics,
)
command.run()
return self.response(200, message="OK")
Expand Down

0 comments on commit 82234a3

Please sign in to comment.