Skip to content

Commit

Permalink
Replace camelCase variables with snake_case
Browse files Browse the repository at this point in the history
Signed-off-by: Jose R. Gonzalez <komish@flutes.dev>
  • Loading branch information
komish committed Feb 26, 2024
1 parent 9322696 commit 643e56a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions scripts/src/packagemapping/generatelocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,15 @@ def main():
)
return 20

ownersContentLoaded, ownersContent = owners_file.get_owners_data_from_file(
owners_content_loaded, owners_content = owners_file.get_owner_data_from_file(
filename
)
if not ownersContentLoaded:
if not owners_content_loaded:
logError(f"Failed to load OWNERS file content. filename: {filename}")
return 30

owners_value_chart_name = owners_file.get_chart(ownersContent)
owners_value_vendor_label = owners_file.get_vendor_label(ownersContent)
owners_value_chart_name = owners_file.get_chart(owners_content)
owners_value_vendor_label = owners_file.get_vendor_label(owners_content)

if owners_value_chart_name != chart:
logError(
Expand Down

0 comments on commit 643e56a

Please sign in to comment.