We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5185b78 commit e171424Copy full SHA for e171424
1 file changed
benchmarks/test_bench_asof.py
@@ -131,7 +131,9 @@ def _holder(self):
131
self.periods = ["2020-01"]
132
for _p in range(1, self.N_PATCHES + 1):
133
month = (
134
- f"2020-{_p + 1:02d}" if _p < 12 else f"{2020 + _p // 12}-{_p % 12 + 1:02d}"
+ f"2020-{_p + 1:02d}"
135
+ if _p < 12
136
+ else f"{2020 + _p // 12}-{_p % 12 + 1:02d}"
137
)
138
self.periods.append(month)
139
0 commit comments