Skip to content

Commit

Permalink
Formatting code
Browse files Browse the repository at this point in the history
  • Loading branch information
joelmataKPN committed Jul 16, 2024
1 parent 7e61de6 commit 7a2c3fa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -573,7 +573,7 @@ def abs_browser(
dir_to_process = dir_to_process.rstrip("\\")
for obj in container_client.list_blobs(
name_starts_with=f"{dir_to_process}",
results_per_page=PAGE_SIZE
results_per_page=PAGE_SIZE,
):
abs_path = self.create_abs_path(obj.name)
logger.debug(f"Sampling file: {abs_path}")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def create_properties(
custom_properties: Dict[str, str],
resource_name: str,
json_properties: list[str],
) -> List[str]:
) -> None:
for item in data.items():
key = item[0]
transformed_key = f"{prefix}_{key}"
Expand Down Expand Up @@ -256,7 +256,7 @@ def list_folders(

this_dict = {}
for blob in blob_list:
blob_name = blob.name[:blob.name.rfind("/") + 1]
blob_name = blob.name[: blob.name.rfind("/") + 1]
folder_structure_arr = blob_name.split("/")

folder_name = ""
Expand Down

0 comments on commit 7a2c3fa

Please sign in to comment.