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
{{ message }}
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.
If we add six to the list of requirements, we could do something like: if isinstance(dbpath, six.string_types):
to treat both str and unicode the same way in both python 2 and 3. However, we can also get away without updating this at the moment.
The text was updated successfully, but these errors were encountered:
Saw this line and realized it would fail on python 2.7 if the user provides a unicode rather than a string:
astrodbkit/astrodbkit/astrodb.py
Line 89 in c7cf049
If we add
six
to the list of requirements, we could do something like:if isinstance(dbpath, six.string_types):
to treat both str and unicode the same way in both python 2 and 3. However, we can also get away without updating this at the moment.
The text was updated successfully, but these errors were encountered: