Skip to content

Commit

Permalink
Fixed ASV error
Browse files Browse the repository at this point in the history
  • Loading branch information
Sylvain MARIE committed Mar 8, 2024
1 parent c58d5eb commit 098e53e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asv_bench/benchmarks/strftime.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def time_frame_datetime_formatting_index_to_str(self, nobs, tz_aware):
self.data.set_index("dt").index.astype(str)

def time_frame_datetime_formatting_index_default(self, nobs, tz_aware):
self.data.set_index("dt").index.strftime()
self.data.set_index("dt").index.strftime(date_format=None)

def time_frame_datetime_formatting_custom(self, nobs, tz_aware):
self.data["dt"].dt.strftime(date_format="%Y-%m-%d --- %H:%M:%S")
Expand Down

0 comments on commit 098e53e

Please sign in to comment.