We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f09469c commit 2c647daCopy full SHA for 2c647da
cycler.py
@@ -257,7 +257,7 @@ def __add__(self, other):
257
"""
258
if len(self) != len(other):
259
raise ValueError("Can only add equal length cycles, "
260
- "not {} and {}".format(len(self), len(other)))
+ f"not {len(self)} and {len(other)}")
261
return Cycler(self, other, zip)
262
263
def __mul__(self, other):
0 commit comments