Skip to content

Commit ab5cc7d

Browse files
authored
don't double f-string in epoch string
1 parent 2549491 commit ab5cc7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/core/epoch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ def __repr__(self):
229229
objs = [
230230
f"{label}@{str(time)} for {str(dur)}" for label, time, dur in zip(self.labels, self.times, self.durations)
231231
]
232-
return f"<Epoch: %s>" % ", ".join(objs)
232+
return "<Epoch: %s>" % ", ".join(objs)
233233

234234
def _repr_pretty_(self, pp, cycle):
235235
labels = ""

0 commit comments

Comments
 (0)