Skip to content

Commit

Permalink
chore: cleaning
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Mars <[email protected]>
  • Loading branch information
upils committed Feb 4, 2025
1 parent 9df92ea commit a9395e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions craft_parts/utils/partition_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ def namespace_conflicts(a: str, b: str) -> bool:
return split_and_detect(a, b, "/")


def env_var_conflicts(underscored_a: str, underscored_b: str) -> bool:
def env_var_conflicts(a: str, b: str) -> bool:
"""Detect conflicts between partitions when transformed into environment variables."""
return split_and_detect(underscored_a, underscored_b, "_")
return split_and_detect(a, b, "_")


def unique_conflicts(
Expand Down

0 comments on commit a9395e5

Please sign in to comment.