Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jczhong84 committed Nov 28, 2023
1 parent 2498c76 commit db4ae1e
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions querybook/server/lib/table_upload/exporter/s3_exporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,7 @@ def destination_s3_folder(self, session=None) -> str:
schema_name, table_name = self._fq_table_name
if "s3_path" in self._exporter_config:
s3_path: str = self._exporter_config["s3_path"]

return (
sanitize_s3_url(s3_path)
+ "/"
+ schema_name
+ "/"
+ table_name
)
return sanitize_s3_url(s3_path) + "/" + schema_name + "/" + table_name

query_engine = get_query_engine_by_id(self._engine_id, session=session)
metastore = get_metastore_loader(query_engine.metastore_id, session=session)
Expand Down

0 comments on commit db4ae1e

Please sign in to comment.