Skip to content

Commit

Permalink
Fixing CodeRabbit PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
joelmataKPN committed Jul 9, 2024
1 parent 3f0d854 commit d315ecd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def get_abs_properties(
def add_property(
key: str, value: str, custom_properties: Dict[str, str], resource_name: str
) -> Dict[str, str]:
if key in custom_properties.keys():
if key in custom_properties:
key = f"{key}_{resource_name}"
if value is not None:
custom_properties[key] = str(value)
Expand Down Expand Up @@ -274,7 +274,7 @@ def list_folders(
continue

folder_name = f"{prefix}{folder_name}"
if folder_name in this_dict.keys():
if folder_name in this_dict:
continue
else:
this_dict[folder_name] = folder_name
Expand Down

0 comments on commit d315ecd

Please sign in to comment.