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
the method bitarr.endian() used in line 41 in in utils/utils.py is not supported anymore since bitarray==1.8.x. could be replaced by something self-built like endian = getattr(bitarr, 'endian', 'big') if hasattr(bitarr, 'endian') else 'big'
the method bitarr.endian() used in line 41 in in utils/utils.py is not supported anymore since bitarray==1.8.x. could be replaced by something self-built like endian = getattr(bitarr, 'endian', 'big') if hasattr(bitarr, 'endian') else 'big'