1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-14 03:30:02 +00:00
This commit is contained in:
Tomas Susanka 2019-02-18 17:27:10 +01:00
parent 1eb364c26c
commit e52ec86846
7 changed files with 6 additions and 6 deletions

0
Pipfile Normal file
View File

View File

@ -32,7 +32,7 @@ arithmetic, so we cannot handle secrets without risking their disclosure.
"""
import hashlib
from typing import List, NewType, Tuple
from typing import NewType, Tuple
Point = NewType("Point", Tuple[int, int, int, int])

View File

@ -15,7 +15,7 @@
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
import logging
from typing import Optional, Set, Type
from typing import Optional
from . import protobuf

View File

@ -15,7 +15,7 @@
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
import logging
from typing import Iterable, List, Type
from typing import Iterable, Type
from ..exceptions import TrezorException
from ..protobuf import MessageType

View File

@ -17,7 +17,7 @@
import logging
import struct
from io import BytesIO
from typing import Any, Dict, Iterable, Optional
from typing import Any, Dict, Iterable
import requests

View File

@ -15,7 +15,7 @@
# If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
import socket
from typing import Iterable, Optional, cast
from typing import Iterable, cast
from . import TransportException
from .protocol import ProtocolBasedTransport, get_protocol

View File

@ -18,7 +18,7 @@ import atexit
import logging
import sys
import time
from typing import Iterable, Optional
from typing import Iterable
from . import TREZORS, UDEV_RULES_STR, TransportException
from .protocol import ProtocolBasedTransport, ProtocolV1