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.
2 parents 233c66d + dce1784 commit 25e3cebCopy full SHA for 25e3ceb
cycler.py
@@ -335,7 +335,7 @@ def __repr__(self):
335
def _repr_html_(self):
336
# an table showing the value of each key through a full cycle
337
output = "<table>"
338
- sorted_keys = sorted(self.keys)
+ sorted_keys = sorted(self.keys, key=repr)
339
for key in sorted_keys:
340
output += "<th>{key!r}</th>".format(key=key)
341
for d in iter(self):
0 commit comments