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
calling vars on a namedtuple seems to be broken in the last Python versions. Basically they removed the dict from namedtuples.
redo the calls on vars(const) with OrderedDict(zip(const._fields, const))
The text was updated successfully, but these errors were encountered:
calling vars on a namedtuple seems to be broken in the last Python versions. Basically they removed the dict from namedtuples.
redo the calls on vars(const) with OrderedDict(zip(const._fields, const))
The text was updated successfully, but these errors were encountered: