Judd Vinet
Results
2
issues of
Judd Vinet
Moved profile root to `$XDG_DATA_HOME/qutebrowser/profiles` so profile names cannot collide with Qutebrowser data files (eg: `webengine`)
Test code: ```python import os from eip712_structs import Bytes, Array, EIP712Struct, make_domain class TestStruct(EIP712Struct): byte_array = Array(Bytes(32), 4) byte_array = [os.urandom(32) for _ in range(4)] domain = make_domain(name='hello') s =...