1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-03-29 22:45:44 +00:00

Revert "style"

This reverts commit e52ec86846.
This commit is contained in:
Tomas Susanka 2019-02-18 20:43:08 +01:00
parent e52ec86846
commit 1105ba2039
7 changed files with 6 additions and 6 deletions

View File

View File

@ -32,7 +32,7 @@ arithmetic, so we cannot handle secrets without risking their disclosure.
""" """
import hashlib import hashlib
from typing import NewType, Tuple from typing import List, NewType, Tuple
Point = NewType("Point", Tuple[int, int, int, int]) 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>. # If not, see <https://www.gnu.org/licenses/lgpl-3.0.html>.
import logging import logging
from typing import Optional from typing import Optional, Set, Type
from . import protobuf from . import protobuf

View File

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

View File

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

View File

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

View File

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