Skip to content

Commit 01b247a

Browse files
added literal syntax instead dict
1 parent 40c08a9 commit 01b247a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cycler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def __iter__(self):
246246
yield dict(left)
247247
else:
248248
for a, b in self._op(self._left, self._right):
249-
out = dict()
249+
out = {}
250250
out.update(a)
251251
out.update(b)
252252
yield out

0 commit comments

Comments
 (0)