mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 20:19:23 +00:00
fix imports (#72)
This commit is contained in:
parent
ef21a91ceb
commit
933bc12985
@ -1,4 +1,4 @@
|
|||||||
from __future__ import print_function
|
from __future__ import print_function, absolute_import
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
|
from __future__ import absolute_import
|
||||||
|
|
||||||
import struct
|
import struct
|
||||||
import mapping
|
from . import mapping
|
||||||
import binascii
|
import binascii
|
||||||
|
|
||||||
class NotImplementedException(Exception):
|
class NotImplementedException(Exception):
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import os
|
import os
|
||||||
from select import select
|
from select import select
|
||||||
from transport import TransportV1
|
from .transport import TransportV1
|
||||||
|
|
||||||
"""PipeTransport implements fake wire transport over local named pipe.
|
"""PipeTransport implements fake wire transport over local named pipe.
|
||||||
Use this transport for talking with trezor simulator."""
|
Use this transport for talking with trezor simulator."""
|
||||||
|
Loading…
Reference in New Issue
Block a user