You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the encode method calls in the __repr__ methods on sickle/models.py is incorrect. FWIW, I get exceptions with those:
>>> list(sickle.ListSets())
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/python3.6/dist-packages/sickle/models.py", line 168, in __repr__
return u'<Set %s>'.encode('utf8') % self.setName
TypeError: %b requires a bytes-like object, or an object that implements __bytes__, not 'str'
If I delete them, everything looks fine.
The text was updated successfully, but these errors were encountered:
I think the
encode
method calls in the__repr__
methods on sickle/models.py is incorrect. FWIW, I get exceptions with those:If I delete them, everything looks fine.
The text was updated successfully, but these errors were encountered: