1
0
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:
Dominik Kozaczko 2016-09-27 22:49:51 +02:00 committed by Pavol Rusnak
parent ef21a91ceb
commit 933bc12985
3 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,4 @@
from __future__ import print_function from __future__ import print_function, absolute_import
import os import os
import sys import sys

View File

@ -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):

View File

@ -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."""