Skip to content

Commit

Permalink
Added noqa
Browse files Browse the repository at this point in the history
  • Loading branch information
Benedikt Schesch committed May 19, 2024
1 parent 1a00b64 commit ef3f926
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/merge_tools/resolve-conflicts.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@ def merge_base_is_prefix_or_suffix(
"""
base_len = len(base)
parent1_len = len(parent1)
parent2_len = len(parent2)
parent2_len = len(parent2) # noqa: F841
if base_len < parent1_len:
if parent1[:base_len] == base:
debug_print("startswith", parent1, base)
Expand Down

0 comments on commit ef3f926

Please sign in to comment.