Skip to content

Commit 428a96b

Browse files
ShaharNavehMateusz Górski
authored and
Mateusz Górski
committed
F-string (pandas-dev#29663)
1 parent dd790e8 commit 428a96b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asv_bench/benchmarks/io/csv.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ class ReadCSVConcatDatetimeBadDateValue(StringIORewind):
132132
param_names = ["bad_date_value"]
133133

134134
def setup(self, bad_date_value):
135-
self.StringIO_input = StringIO(("%s,\n" % bad_date_value) * 50000)
135+
self.StringIO_input = StringIO((f"{bad_date_value},\n") * 50000)
136136

137137
def time_read_csv(self, bad_date_value):
138138
read_csv(

0 commit comments

Comments
 (0)