Skip to content

Commit

Permalink
Fix f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham authored Aug 30, 2024
1 parent d1280df commit 90ee323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/kvikio/kvikio/_lib/libnvcomp_ll.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ class nvCompBatchAlgorithmLZ4(nvCompBatchAlgorithm):
elif isinstance(data_type, int):
self.options = nvcompBatchedLZ4Opts_t(data_type)
else:
raise ValueError("Invalid value for data_type: {data_type}")
raise ValueError(f"Invalid value for data_type: {data_type}")

self.has_header = has_header

Expand Down

0 comments on commit 90ee323

Please sign in to comment.