Skip to content

Commit

Permalink
Use predefined variable in fstring
Browse files Browse the repository at this point in the history
  • Loading branch information
mroeschke committed Feb 3, 2025
1 parent 913b501 commit bd4091d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/core/join/join.py
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ def _merge_results(
if r_label in data:
raise NotImplementedError(
f"suffixes={(self.lsuffix, self.rsuffix)} would introduce a "
f"duplicate column label, '{name}{self.rsuffix}', which is "
f"duplicate column label, '{r_label}', which is "
"not supported."
)
data[r_label] = col
Expand Down

0 comments on commit bd4091d

Please sign in to comment.