diff --git a/common/protob/pb2py b/common/protob/pb2py index 291c98c8e..56899f8dc 100755 --- a/common/protob/pb2py +++ b/common/protob/pb2py @@ -433,6 +433,7 @@ class Descriptor: with open(os.path.join(self.out_dir, name + ".py"), "w") as f: f.write(AUTO_HEADER) f.write("# fmt: off\n") + f.write("# isort:skip_file\n") for line in out: f.write(line + "\n") @@ -440,7 +441,8 @@ class Descriptor: filename = os.path.join(self.out_dir, "__init__.py") with open(filename, "w") as init_py: init_py.write(AUTO_HEADER) - init_py.write("# fmt: off\n\n") + init_py.write("# fmt: off\n") + init_py.write("# isort:skip_file\n\n") for message in sorted(self.messages, key=lambda m: m.name): init_py.write(self.create_message_import(message.name) + "\n") for enum in sorted(self.enums, key=lambda m: m.name): diff --git a/core/src/trezor/messages/Address.py b/core/src/trezor/messages/Address.py index e2099ce32..75d70251c 100644 --- a/core/src/trezor/messages/Address.py +++ b/core/src/trezor/messages/Address.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/AmountUnit.py b/core/src/trezor/messages/AmountUnit.py index e602f2dfe..bd1079273 100644 --- a/core/src/trezor/messages/AmountUnit.py +++ b/core/src/trezor/messages/AmountUnit.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/ApplyFlags.py b/core/src/trezor/messages/ApplyFlags.py index 8cb6a2ec5..5b64df8bf 100644 --- a/core/src/trezor/messages/ApplyFlags.py +++ b/core/src/trezor/messages/ApplyFlags.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/ApplySettings.py b/core/src/trezor/messages/ApplySettings.py index 7dc514fbd..185c60761 100644 --- a/core/src/trezor/messages/ApplySettings.py +++ b/core/src/trezor/messages/ApplySettings.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/AuthorizeCoinJoin.py b/core/src/trezor/messages/AuthorizeCoinJoin.py index 5cbd24554..180373410 100644 --- a/core/src/trezor/messages/AuthorizeCoinJoin.py +++ b/core/src/trezor/messages/AuthorizeCoinJoin.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/BackupDevice.py b/core/src/trezor/messages/BackupDevice.py index 9182f807e..bb4244318 100644 --- a/core/src/trezor/messages/BackupDevice.py +++ b/core/src/trezor/messages/BackupDevice.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/BackupType.py b/core/src/trezor/messages/BackupType.py index d8ed8002f..870723b6e 100644 --- a/core/src/trezor/messages/BackupType.py +++ b/core/src/trezor/messages/BackupType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/BinanceAddress.py b/core/src/trezor/messages/BinanceAddress.py index 908005d1d..2a65681d9 100644 --- a/core/src/trezor/messages/BinanceAddress.py +++ b/core/src/trezor/messages/BinanceAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/BinanceCancelMsg.py b/core/src/trezor/messages/BinanceCancelMsg.py index 484e7ac26..565bca0c3 100644 --- a/core/src/trezor/messages/BinanceCancelMsg.py +++ b/core/src/trezor/messages/BinanceCancelMsg.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/BinanceCoin.py b/core/src/trezor/messages/BinanceCoin.py index 34db516c8..80c432a30 100644 --- a/core/src/trezor/messages/BinanceCoin.py +++ b/core/src/trezor/messages/BinanceCoin.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/BinanceGetAddress.py b/core/src/trezor/messages/BinanceGetAddress.py index d1ffbb31f..0bae521a6 100644 --- a/core/src/trezor/messages/BinanceGetAddress.py +++ b/core/src/trezor/messages/BinanceGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/BinanceGetPublicKey.py b/core/src/trezor/messages/BinanceGetPublicKey.py index 59f30ff31..5a478d646 100644 --- a/core/src/trezor/messages/BinanceGetPublicKey.py +++ b/core/src/trezor/messages/BinanceGetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/BinanceInputOutput.py b/core/src/trezor/messages/BinanceInputOutput.py index eed4c2a6f..99d5782ac 100644 --- a/core/src/trezor/messages/BinanceInputOutput.py +++ b/core/src/trezor/messages/BinanceInputOutput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .BinanceCoin import BinanceCoin diff --git a/core/src/trezor/messages/BinanceOrderMsg.py b/core/src/trezor/messages/BinanceOrderMsg.py index 2b0b9ff41..32b04bebc 100644 --- a/core/src/trezor/messages/BinanceOrderMsg.py +++ b/core/src/trezor/messages/BinanceOrderMsg.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/BinanceOrderSide.py b/core/src/trezor/messages/BinanceOrderSide.py index 91be3ccdc..6a4302cc2 100644 --- a/core/src/trezor/messages/BinanceOrderSide.py +++ b/core/src/trezor/messages/BinanceOrderSide.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/BinanceOrderType.py b/core/src/trezor/messages/BinanceOrderType.py index 81846bb56..5f9633fe9 100644 --- a/core/src/trezor/messages/BinanceOrderType.py +++ b/core/src/trezor/messages/BinanceOrderType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/BinancePublicKey.py b/core/src/trezor/messages/BinancePublicKey.py index e04a44d3e..4a8fc8713 100644 --- a/core/src/trezor/messages/BinancePublicKey.py +++ b/core/src/trezor/messages/BinancePublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/BinanceSignTx.py b/core/src/trezor/messages/BinanceSignTx.py index 68fdf8f3f..f3e76121d 100644 --- a/core/src/trezor/messages/BinanceSignTx.py +++ b/core/src/trezor/messages/BinanceSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/BinanceSignedTx.py b/core/src/trezor/messages/BinanceSignedTx.py index c8bce24cf..0d6531f3b 100644 --- a/core/src/trezor/messages/BinanceSignedTx.py +++ b/core/src/trezor/messages/BinanceSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/BinanceTimeInForce.py b/core/src/trezor/messages/BinanceTimeInForce.py index 340135fb2..339143f9c 100644 --- a/core/src/trezor/messages/BinanceTimeInForce.py +++ b/core/src/trezor/messages/BinanceTimeInForce.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/BinanceTransferMsg.py b/core/src/trezor/messages/BinanceTransferMsg.py index de638d816..7d114a192 100644 --- a/core/src/trezor/messages/BinanceTransferMsg.py +++ b/core/src/trezor/messages/BinanceTransferMsg.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .BinanceInputOutput import BinanceInputOutput diff --git a/core/src/trezor/messages/BinanceTxRequest.py b/core/src/trezor/messages/BinanceTxRequest.py index 6c52adf15..92309051e 100644 --- a/core/src/trezor/messages/BinanceTxRequest.py +++ b/core/src/trezor/messages/BinanceTxRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/ButtonAck.py b/core/src/trezor/messages/ButtonAck.py index 9ca3f57b8..3ef299e16 100644 --- a/core/src/trezor/messages/ButtonAck.py +++ b/core/src/trezor/messages/ButtonAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/ButtonRequest.py b/core/src/trezor/messages/ButtonRequest.py index c0f6e1d11..f88dc9c2d 100644 --- a/core/src/trezor/messages/ButtonRequest.py +++ b/core/src/trezor/messages/ButtonRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/ButtonRequestType.py b/core/src/trezor/messages/ButtonRequestType.py index 535ec54fb..fff3b8e79 100644 --- a/core/src/trezor/messages/ButtonRequestType.py +++ b/core/src/trezor/messages/ButtonRequestType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/Cancel.py b/core/src/trezor/messages/Cancel.py index cf42f2325..0a79f8d21 100644 --- a/core/src/trezor/messages/Cancel.py +++ b/core/src/trezor/messages/Cancel.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CancelAuthorization.py b/core/src/trezor/messages/CancelAuthorization.py index 716c584ea..10f303c87 100644 --- a/core/src/trezor/messages/CancelAuthorization.py +++ b/core/src/trezor/messages/CancelAuthorization.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/Capability.py b/core/src/trezor/messages/Capability.py index 2166277ee..4ce634881 100644 --- a/core/src/trezor/messages/Capability.py +++ b/core/src/trezor/messages/Capability.py @@ -2,6 +2,7 @@ # fmt: off from trezor import utils +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/CardanoAddress.py b/core/src/trezor/messages/CardanoAddress.py index de2f1b988..d6d890195 100644 --- a/core/src/trezor/messages/CardanoAddress.py +++ b/core/src/trezor/messages/CardanoAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CardanoAddressParametersType.py b/core/src/trezor/messages/CardanoAddressParametersType.py index a9356e35e..6bfa5c967 100644 --- a/core/src/trezor/messages/CardanoAddressParametersType.py +++ b/core/src/trezor/messages/CardanoAddressParametersType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .CardanoBlockchainPointerType import CardanoBlockchainPointerType diff --git a/core/src/trezor/messages/CardanoAddressType.py b/core/src/trezor/messages/CardanoAddressType.py index ec7bb4397..a4f0a6997 100644 --- a/core/src/trezor/messages/CardanoAddressType.py +++ b/core/src/trezor/messages/CardanoAddressType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/CardanoAssetGroupType.py b/core/src/trezor/messages/CardanoAssetGroupType.py index ea798533a..547c7924d 100644 --- a/core/src/trezor/messages/CardanoAssetGroupType.py +++ b/core/src/trezor/messages/CardanoAssetGroupType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .CardanoTokenType import CardanoTokenType diff --git a/core/src/trezor/messages/CardanoBlockchainPointerType.py b/core/src/trezor/messages/CardanoBlockchainPointerType.py index e3fdbc384..535887684 100644 --- a/core/src/trezor/messages/CardanoBlockchainPointerType.py +++ b/core/src/trezor/messages/CardanoBlockchainPointerType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CardanoCatalystRegistrationParametersType.py b/core/src/trezor/messages/CardanoCatalystRegistrationParametersType.py index 87733d3b9..7b1819428 100644 --- a/core/src/trezor/messages/CardanoCatalystRegistrationParametersType.py +++ b/core/src/trezor/messages/CardanoCatalystRegistrationParametersType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .CardanoAddressParametersType import CardanoAddressParametersType diff --git a/core/src/trezor/messages/CardanoCertificateType.py b/core/src/trezor/messages/CardanoCertificateType.py index 4f7e4a82d..4004c570a 100644 --- a/core/src/trezor/messages/CardanoCertificateType.py +++ b/core/src/trezor/messages/CardanoCertificateType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/CardanoGetAddress.py b/core/src/trezor/messages/CardanoGetAddress.py index 68f5843fe..6852740e7 100644 --- a/core/src/trezor/messages/CardanoGetAddress.py +++ b/core/src/trezor/messages/CardanoGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .CardanoAddressParametersType import CardanoAddressParametersType diff --git a/core/src/trezor/messages/CardanoGetPublicKey.py b/core/src/trezor/messages/CardanoGetPublicKey.py index 565c56836..317593275 100644 --- a/core/src/trezor/messages/CardanoGetPublicKey.py +++ b/core/src/trezor/messages/CardanoGetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CardanoPoolMetadataType.py b/core/src/trezor/messages/CardanoPoolMetadataType.py index 07e22deed..3f60a1ef3 100644 --- a/core/src/trezor/messages/CardanoPoolMetadataType.py +++ b/core/src/trezor/messages/CardanoPoolMetadataType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CardanoPoolOwnerType.py b/core/src/trezor/messages/CardanoPoolOwnerType.py index e3ce2753e..91974c40e 100644 --- a/core/src/trezor/messages/CardanoPoolOwnerType.py +++ b/core/src/trezor/messages/CardanoPoolOwnerType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CardanoPoolParametersType.py b/core/src/trezor/messages/CardanoPoolParametersType.py index 405905bc5..d8e866f75 100644 --- a/core/src/trezor/messages/CardanoPoolParametersType.py +++ b/core/src/trezor/messages/CardanoPoolParametersType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .CardanoPoolMetadataType import CardanoPoolMetadataType diff --git a/core/src/trezor/messages/CardanoPoolRelayParametersType.py b/core/src/trezor/messages/CardanoPoolRelayParametersType.py index 11555ad24..c0759edac 100644 --- a/core/src/trezor/messages/CardanoPoolRelayParametersType.py +++ b/core/src/trezor/messages/CardanoPoolRelayParametersType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CardanoPoolRelayType.py b/core/src/trezor/messages/CardanoPoolRelayType.py index 680b29d43..fcc291117 100644 --- a/core/src/trezor/messages/CardanoPoolRelayType.py +++ b/core/src/trezor/messages/CardanoPoolRelayType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/CardanoPublicKey.py b/core/src/trezor/messages/CardanoPublicKey.py index 47e3e3ff4..bb9f75b12 100644 --- a/core/src/trezor/messages/CardanoPublicKey.py +++ b/core/src/trezor/messages/CardanoPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .HDNodeType import HDNodeType diff --git a/core/src/trezor/messages/CardanoSignTx.py b/core/src/trezor/messages/CardanoSignTx.py index cbcf0f43d..da4f35e3a 100644 --- a/core/src/trezor/messages/CardanoSignTx.py +++ b/core/src/trezor/messages/CardanoSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .CardanoTxAuxiliaryDataType import CardanoTxAuxiliaryDataType diff --git a/core/src/trezor/messages/CardanoSignedTx.py b/core/src/trezor/messages/CardanoSignedTx.py index dac082882..631828274 100644 --- a/core/src/trezor/messages/CardanoSignedTx.py +++ b/core/src/trezor/messages/CardanoSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CardanoSignedTxChunk.py b/core/src/trezor/messages/CardanoSignedTxChunk.py index 0de820a90..055a2c213 100644 --- a/core/src/trezor/messages/CardanoSignedTxChunk.py +++ b/core/src/trezor/messages/CardanoSignedTxChunk.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CardanoSignedTxChunkAck.py b/core/src/trezor/messages/CardanoSignedTxChunkAck.py index d78f450f8..76ae572a9 100644 --- a/core/src/trezor/messages/CardanoSignedTxChunkAck.py +++ b/core/src/trezor/messages/CardanoSignedTxChunkAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CardanoTokenType.py b/core/src/trezor/messages/CardanoTokenType.py index 42b43e0ad..1d1797c38 100644 --- a/core/src/trezor/messages/CardanoTokenType.py +++ b/core/src/trezor/messages/CardanoTokenType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CardanoTxAuxiliaryDataType.py b/core/src/trezor/messages/CardanoTxAuxiliaryDataType.py index 23c127ffe..961d6fd3d 100644 --- a/core/src/trezor/messages/CardanoTxAuxiliaryDataType.py +++ b/core/src/trezor/messages/CardanoTxAuxiliaryDataType.py @@ -1,10 +1,9 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p -from .CardanoCatalystRegistrationParametersType import ( - CardanoCatalystRegistrationParametersType, -) +from .CardanoCatalystRegistrationParametersType import CardanoCatalystRegistrationParametersType if __debug__: try: diff --git a/core/src/trezor/messages/CardanoTxCertificateType.py b/core/src/trezor/messages/CardanoTxCertificateType.py index bf93eec2b..0bca83e25 100644 --- a/core/src/trezor/messages/CardanoTxCertificateType.py +++ b/core/src/trezor/messages/CardanoTxCertificateType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .CardanoPoolParametersType import CardanoPoolParametersType diff --git a/core/src/trezor/messages/CardanoTxInputType.py b/core/src/trezor/messages/CardanoTxInputType.py index a770c1685..95e8e015f 100644 --- a/core/src/trezor/messages/CardanoTxInputType.py +++ b/core/src/trezor/messages/CardanoTxInputType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CardanoTxOutputType.py b/core/src/trezor/messages/CardanoTxOutputType.py index 922c1ad0e..3fcdf5f51 100644 --- a/core/src/trezor/messages/CardanoTxOutputType.py +++ b/core/src/trezor/messages/CardanoTxOutputType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .CardanoAddressParametersType import CardanoAddressParametersType diff --git a/core/src/trezor/messages/CardanoTxWithdrawalType.py b/core/src/trezor/messages/CardanoTxWithdrawalType.py index f5e88d2ce..5ee1d7d9a 100644 --- a/core/src/trezor/messages/CardanoTxWithdrawalType.py +++ b/core/src/trezor/messages/CardanoTxWithdrawalType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/ChangePin.py b/core/src/trezor/messages/ChangePin.py index 6464248d1..11741b888 100644 --- a/core/src/trezor/messages/ChangePin.py +++ b/core/src/trezor/messages/ChangePin.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/ChangeWipeCode.py b/core/src/trezor/messages/ChangeWipeCode.py index 80641410c..ea7bd354c 100644 --- a/core/src/trezor/messages/ChangeWipeCode.py +++ b/core/src/trezor/messages/ChangeWipeCode.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CipherKeyValue.py b/core/src/trezor/messages/CipherKeyValue.py index d09e6a575..cb6816dd2 100644 --- a/core/src/trezor/messages/CipherKeyValue.py +++ b/core/src/trezor/messages/CipherKeyValue.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/CipheredKeyValue.py b/core/src/trezor/messages/CipheredKeyValue.py index 07751e015..560218e38 100644 --- a/core/src/trezor/messages/CipheredKeyValue.py +++ b/core/src/trezor/messages/CipheredKeyValue.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/DebugLinkDecision.py b/core/src/trezor/messages/DebugLinkDecision.py index c215a90dc..9fecd54a5 100644 --- a/core/src/trezor/messages/DebugLinkDecision.py +++ b/core/src/trezor/messages/DebugLinkDecision.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/DebugLinkEraseSdCard.py b/core/src/trezor/messages/DebugLinkEraseSdCard.py index c4ae434ce..c425d9d98 100644 --- a/core/src/trezor/messages/DebugLinkEraseSdCard.py +++ b/core/src/trezor/messages/DebugLinkEraseSdCard.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/DebugLinkGetState.py b/core/src/trezor/messages/DebugLinkGetState.py index 520ab5242..0549aec42 100644 --- a/core/src/trezor/messages/DebugLinkGetState.py +++ b/core/src/trezor/messages/DebugLinkGetState.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/DebugLinkLayout.py b/core/src/trezor/messages/DebugLinkLayout.py index 03438da62..0534d8256 100644 --- a/core/src/trezor/messages/DebugLinkLayout.py +++ b/core/src/trezor/messages/DebugLinkLayout.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/DebugLinkRecordScreen.py b/core/src/trezor/messages/DebugLinkRecordScreen.py index 436774860..f21633ac4 100644 --- a/core/src/trezor/messages/DebugLinkRecordScreen.py +++ b/core/src/trezor/messages/DebugLinkRecordScreen.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/DebugLinkReseedRandom.py b/core/src/trezor/messages/DebugLinkReseedRandom.py index 4ae5a354b..b40dd53bf 100644 --- a/core/src/trezor/messages/DebugLinkReseedRandom.py +++ b/core/src/trezor/messages/DebugLinkReseedRandom.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/DebugLinkState.py b/core/src/trezor/messages/DebugLinkState.py index b06d1c56b..1f26ce0ef 100644 --- a/core/src/trezor/messages/DebugLinkState.py +++ b/core/src/trezor/messages/DebugLinkState.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .HDNodeType import HDNodeType diff --git a/core/src/trezor/messages/DebugLinkWatchLayout.py b/core/src/trezor/messages/DebugLinkWatchLayout.py index cf3e139de..2d7d53677 100644 --- a/core/src/trezor/messages/DebugLinkWatchLayout.py +++ b/core/src/trezor/messages/DebugLinkWatchLayout.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/DebugMoneroDiagAck.py b/core/src/trezor/messages/DebugMoneroDiagAck.py index 5c7be7f14..57e3365b5 100644 --- a/core/src/trezor/messages/DebugMoneroDiagAck.py +++ b/core/src/trezor/messages/DebugMoneroDiagAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/DebugMoneroDiagRequest.py b/core/src/trezor/messages/DebugMoneroDiagRequest.py index 658e8de51..cc4acfe4d 100644 --- a/core/src/trezor/messages/DebugMoneroDiagRequest.py +++ b/core/src/trezor/messages/DebugMoneroDiagRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/DebugSwipeDirection.py b/core/src/trezor/messages/DebugSwipeDirection.py index 9e6cbf292..9543f3218 100644 --- a/core/src/trezor/messages/DebugSwipeDirection.py +++ b/core/src/trezor/messages/DebugSwipeDirection.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/DecredStakingSpendType.py b/core/src/trezor/messages/DecredStakingSpendType.py index fa1d65be5..56ec22ec2 100644 --- a/core/src/trezor/messages/DecredStakingSpendType.py +++ b/core/src/trezor/messages/DecredStakingSpendType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/Deprecated_PassphraseStateAck.py b/core/src/trezor/messages/Deprecated_PassphraseStateAck.py index f4eb6dc40..343809872 100644 --- a/core/src/trezor/messages/Deprecated_PassphraseStateAck.py +++ b/core/src/trezor/messages/Deprecated_PassphraseStateAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/Deprecated_PassphraseStateRequest.py b/core/src/trezor/messages/Deprecated_PassphraseStateRequest.py index 1f52808f7..7002ee2e5 100644 --- a/core/src/trezor/messages/Deprecated_PassphraseStateRequest.py +++ b/core/src/trezor/messages/Deprecated_PassphraseStateRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/DoPreauthorized.py b/core/src/trezor/messages/DoPreauthorized.py index 7a03eee72..ee7b94395 100644 --- a/core/src/trezor/messages/DoPreauthorized.py +++ b/core/src/trezor/messages/DoPreauthorized.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/ECDHSessionKey.py b/core/src/trezor/messages/ECDHSessionKey.py index bf4436efe..9ae0bc6ca 100644 --- a/core/src/trezor/messages/ECDHSessionKey.py +++ b/core/src/trezor/messages/ECDHSessionKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EndSession.py b/core/src/trezor/messages/EndSession.py index 59b9cd4b4..dd2db8a95 100644 --- a/core/src/trezor/messages/EndSession.py +++ b/core/src/trezor/messages/EndSession.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/Entropy.py b/core/src/trezor/messages/Entropy.py index 7d3a63bd2..b55738fea 100644 --- a/core/src/trezor/messages/Entropy.py +++ b/core/src/trezor/messages/Entropy.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EntropyAck.py b/core/src/trezor/messages/EntropyAck.py index 11d6c14e6..1804f7a6b 100644 --- a/core/src/trezor/messages/EntropyAck.py +++ b/core/src/trezor/messages/EntropyAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EntropyRequest.py b/core/src/trezor/messages/EntropyRequest.py index 7bcf7e7c2..4f4d60867 100644 --- a/core/src/trezor/messages/EntropyRequest.py +++ b/core/src/trezor/messages/EntropyRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosActionBuyRam.py b/core/src/trezor/messages/EosActionBuyRam.py index bb067e9ba..b57f29753 100644 --- a/core/src/trezor/messages/EosActionBuyRam.py +++ b/core/src/trezor/messages/EosActionBuyRam.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .EosAsset import EosAsset diff --git a/core/src/trezor/messages/EosActionBuyRamBytes.py b/core/src/trezor/messages/EosActionBuyRamBytes.py index 3e670d029..6da7c8bc2 100644 --- a/core/src/trezor/messages/EosActionBuyRamBytes.py +++ b/core/src/trezor/messages/EosActionBuyRamBytes.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosActionCommon.py b/core/src/trezor/messages/EosActionCommon.py index bf7a3d3c5..4cf0d5eb1 100644 --- a/core/src/trezor/messages/EosActionCommon.py +++ b/core/src/trezor/messages/EosActionCommon.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .EosPermissionLevel import EosPermissionLevel diff --git a/core/src/trezor/messages/EosActionDelegate.py b/core/src/trezor/messages/EosActionDelegate.py index d341c60d9..d5b3a0433 100644 --- a/core/src/trezor/messages/EosActionDelegate.py +++ b/core/src/trezor/messages/EosActionDelegate.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .EosAsset import EosAsset diff --git a/core/src/trezor/messages/EosActionDeleteAuth.py b/core/src/trezor/messages/EosActionDeleteAuth.py index eb813b9ae..1581237c9 100644 --- a/core/src/trezor/messages/EosActionDeleteAuth.py +++ b/core/src/trezor/messages/EosActionDeleteAuth.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosActionLinkAuth.py b/core/src/trezor/messages/EosActionLinkAuth.py index 9a1fb2467..602ae7376 100644 --- a/core/src/trezor/messages/EosActionLinkAuth.py +++ b/core/src/trezor/messages/EosActionLinkAuth.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosActionNewAccount.py b/core/src/trezor/messages/EosActionNewAccount.py index 4e6c240cf..4591126e5 100644 --- a/core/src/trezor/messages/EosActionNewAccount.py +++ b/core/src/trezor/messages/EosActionNewAccount.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .EosAuthorization import EosAuthorization diff --git a/core/src/trezor/messages/EosActionRefund.py b/core/src/trezor/messages/EosActionRefund.py index 571604ff3..34b85ffcd 100644 --- a/core/src/trezor/messages/EosActionRefund.py +++ b/core/src/trezor/messages/EosActionRefund.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosActionSellRam.py b/core/src/trezor/messages/EosActionSellRam.py index b762660ca..9c9ad57a4 100644 --- a/core/src/trezor/messages/EosActionSellRam.py +++ b/core/src/trezor/messages/EosActionSellRam.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosActionTransfer.py b/core/src/trezor/messages/EosActionTransfer.py index 139b1c261..b2d6d1d4e 100644 --- a/core/src/trezor/messages/EosActionTransfer.py +++ b/core/src/trezor/messages/EosActionTransfer.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .EosAsset import EosAsset diff --git a/core/src/trezor/messages/EosActionUndelegate.py b/core/src/trezor/messages/EosActionUndelegate.py index 26a553b28..f066b7fab 100644 --- a/core/src/trezor/messages/EosActionUndelegate.py +++ b/core/src/trezor/messages/EosActionUndelegate.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .EosAsset import EosAsset diff --git a/core/src/trezor/messages/EosActionUnknown.py b/core/src/trezor/messages/EosActionUnknown.py index bacf03d58..d3fb2f0b5 100644 --- a/core/src/trezor/messages/EosActionUnknown.py +++ b/core/src/trezor/messages/EosActionUnknown.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosActionUnlinkAuth.py b/core/src/trezor/messages/EosActionUnlinkAuth.py index 245994c0b..35ed464d0 100644 --- a/core/src/trezor/messages/EosActionUnlinkAuth.py +++ b/core/src/trezor/messages/EosActionUnlinkAuth.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosActionUpdateAuth.py b/core/src/trezor/messages/EosActionUpdateAuth.py index 83ebd9ad1..475b2393a 100644 --- a/core/src/trezor/messages/EosActionUpdateAuth.py +++ b/core/src/trezor/messages/EosActionUpdateAuth.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .EosAuthorization import EosAuthorization diff --git a/core/src/trezor/messages/EosActionVoteProducer.py b/core/src/trezor/messages/EosActionVoteProducer.py index a79c1ea8e..817af090b 100644 --- a/core/src/trezor/messages/EosActionVoteProducer.py +++ b/core/src/trezor/messages/EosActionVoteProducer.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosAsset.py b/core/src/trezor/messages/EosAsset.py index 40b77b2c8..5147850bf 100644 --- a/core/src/trezor/messages/EosAsset.py +++ b/core/src/trezor/messages/EosAsset.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosAuthorization.py b/core/src/trezor/messages/EosAuthorization.py index bc6d4e429..fd35f0ba8 100644 --- a/core/src/trezor/messages/EosAuthorization.py +++ b/core/src/trezor/messages/EosAuthorization.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .EosAuthorizationAccount import EosAuthorizationAccount diff --git a/core/src/trezor/messages/EosAuthorizationAccount.py b/core/src/trezor/messages/EosAuthorizationAccount.py index aa1012e57..790681754 100644 --- a/core/src/trezor/messages/EosAuthorizationAccount.py +++ b/core/src/trezor/messages/EosAuthorizationAccount.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .EosPermissionLevel import EosPermissionLevel diff --git a/core/src/trezor/messages/EosAuthorizationKey.py b/core/src/trezor/messages/EosAuthorizationKey.py index e403a0561..d0247dfa1 100644 --- a/core/src/trezor/messages/EosAuthorizationKey.py +++ b/core/src/trezor/messages/EosAuthorizationKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosAuthorizationWait.py b/core/src/trezor/messages/EosAuthorizationWait.py index 7b132c541..91ead71ba 100644 --- a/core/src/trezor/messages/EosAuthorizationWait.py +++ b/core/src/trezor/messages/EosAuthorizationWait.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosGetPublicKey.py b/core/src/trezor/messages/EosGetPublicKey.py index a2e2aa38d..598669835 100644 --- a/core/src/trezor/messages/EosGetPublicKey.py +++ b/core/src/trezor/messages/EosGetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosPermissionLevel.py b/core/src/trezor/messages/EosPermissionLevel.py index 1198a7edc..99cf78f86 100644 --- a/core/src/trezor/messages/EosPermissionLevel.py +++ b/core/src/trezor/messages/EosPermissionLevel.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosPublicKey.py b/core/src/trezor/messages/EosPublicKey.py index 93f9fab3d..7955b4416 100644 --- a/core/src/trezor/messages/EosPublicKey.py +++ b/core/src/trezor/messages/EosPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosSignTx.py b/core/src/trezor/messages/EosSignTx.py index ac0cef4d8..50c72a3a1 100644 --- a/core/src/trezor/messages/EosSignTx.py +++ b/core/src/trezor/messages/EosSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .EosTxHeader import EosTxHeader diff --git a/core/src/trezor/messages/EosSignedTx.py b/core/src/trezor/messages/EosSignedTx.py index f8684a573..e17fe70d7 100644 --- a/core/src/trezor/messages/EosSignedTx.py +++ b/core/src/trezor/messages/EosSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosTxActionAck.py b/core/src/trezor/messages/EosTxActionAck.py index cfd1edf43..0c9bf4ace 100644 --- a/core/src/trezor/messages/EosTxActionAck.py +++ b/core/src/trezor/messages/EosTxActionAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .EosActionBuyRam import EosActionBuyRam diff --git a/core/src/trezor/messages/EosTxActionRequest.py b/core/src/trezor/messages/EosTxActionRequest.py index 5fcc024b5..927fc7919 100644 --- a/core/src/trezor/messages/EosTxActionRequest.py +++ b/core/src/trezor/messages/EosTxActionRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EosTxHeader.py b/core/src/trezor/messages/EosTxHeader.py index fac2f64d6..7becc5c12 100644 --- a/core/src/trezor/messages/EosTxHeader.py +++ b/core/src/trezor/messages/EosTxHeader.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EthereumAddress.py b/core/src/trezor/messages/EthereumAddress.py index 07259f7bc..80a4e63ae 100644 --- a/core/src/trezor/messages/EthereumAddress.py +++ b/core/src/trezor/messages/EthereumAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EthereumGetAddress.py b/core/src/trezor/messages/EthereumGetAddress.py index 81d953126..3dccfd267 100644 --- a/core/src/trezor/messages/EthereumGetAddress.py +++ b/core/src/trezor/messages/EthereumGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EthereumGetPublicKey.py b/core/src/trezor/messages/EthereumGetPublicKey.py index 52ef8d4c1..19cc0c1ba 100644 --- a/core/src/trezor/messages/EthereumGetPublicKey.py +++ b/core/src/trezor/messages/EthereumGetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EthereumMessageSignature.py b/core/src/trezor/messages/EthereumMessageSignature.py index e73066df0..77f8a35a6 100644 --- a/core/src/trezor/messages/EthereumMessageSignature.py +++ b/core/src/trezor/messages/EthereumMessageSignature.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EthereumPublicKey.py b/core/src/trezor/messages/EthereumPublicKey.py index ca338f144..9b048f537 100644 --- a/core/src/trezor/messages/EthereumPublicKey.py +++ b/core/src/trezor/messages/EthereumPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .HDNodeType import HDNodeType diff --git a/core/src/trezor/messages/EthereumSignMessage.py b/core/src/trezor/messages/EthereumSignMessage.py index 5887a7184..ccb9ff98a 100644 --- a/core/src/trezor/messages/EthereumSignMessage.py +++ b/core/src/trezor/messages/EthereumSignMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EthereumSignTx.py b/core/src/trezor/messages/EthereumSignTx.py index 805d28a9d..3fcb1315d 100644 --- a/core/src/trezor/messages/EthereumSignTx.py +++ b/core/src/trezor/messages/EthereumSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EthereumTxAck.py b/core/src/trezor/messages/EthereumTxAck.py index 615ed88d6..473d1a375 100644 --- a/core/src/trezor/messages/EthereumTxAck.py +++ b/core/src/trezor/messages/EthereumTxAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EthereumTxRequest.py b/core/src/trezor/messages/EthereumTxRequest.py index 895996658..a9136ec52 100644 --- a/core/src/trezor/messages/EthereumTxRequest.py +++ b/core/src/trezor/messages/EthereumTxRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/EthereumVerifyMessage.py b/core/src/trezor/messages/EthereumVerifyMessage.py index 64e4a8f00..fb6e22b6b 100644 --- a/core/src/trezor/messages/EthereumVerifyMessage.py +++ b/core/src/trezor/messages/EthereumVerifyMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/Failure.py b/core/src/trezor/messages/Failure.py index b85725312..bcbe64e3b 100644 --- a/core/src/trezor/messages/Failure.py +++ b/core/src/trezor/messages/Failure.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/FailureType.py b/core/src/trezor/messages/FailureType.py index 49dbf8b6f..ed6bda304 100644 --- a/core/src/trezor/messages/FailureType.py +++ b/core/src/trezor/messages/FailureType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/Features.py b/core/src/trezor/messages/Features.py index 5238bd286..2225008be 100644 --- a/core/src/trezor/messages/Features.py +++ b/core/src/trezor/messages/Features.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/GetAddress.py b/core/src/trezor/messages/GetAddress.py index b933efc71..5d6889b59 100644 --- a/core/src/trezor/messages/GetAddress.py +++ b/core/src/trezor/messages/GetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/core/src/trezor/messages/GetECDHSessionKey.py b/core/src/trezor/messages/GetECDHSessionKey.py index b9e29ed5f..b698d04fa 100644 --- a/core/src/trezor/messages/GetECDHSessionKey.py +++ b/core/src/trezor/messages/GetECDHSessionKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .IdentityType import IdentityType diff --git a/core/src/trezor/messages/GetEntropy.py b/core/src/trezor/messages/GetEntropy.py index f8592e62d..c8b77d790 100644 --- a/core/src/trezor/messages/GetEntropy.py +++ b/core/src/trezor/messages/GetEntropy.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/GetFeatures.py b/core/src/trezor/messages/GetFeatures.py index 510d2fc5b..b90440636 100644 --- a/core/src/trezor/messages/GetFeatures.py +++ b/core/src/trezor/messages/GetFeatures.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/GetNextU2FCounter.py b/core/src/trezor/messages/GetNextU2FCounter.py index 22ddf4cf2..c27e20beb 100644 --- a/core/src/trezor/messages/GetNextU2FCounter.py +++ b/core/src/trezor/messages/GetNextU2FCounter.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/GetOwnershipId.py b/core/src/trezor/messages/GetOwnershipId.py index 5d9ba3d72..9084bf452 100644 --- a/core/src/trezor/messages/GetOwnershipId.py +++ b/core/src/trezor/messages/GetOwnershipId.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/core/src/trezor/messages/GetOwnershipProof.py b/core/src/trezor/messages/GetOwnershipProof.py index b59716c3f..abdeea5ea 100644 --- a/core/src/trezor/messages/GetOwnershipProof.py +++ b/core/src/trezor/messages/GetOwnershipProof.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/core/src/trezor/messages/GetPublicKey.py b/core/src/trezor/messages/GetPublicKey.py index c2b8932b9..ccdb41c6f 100644 --- a/core/src/trezor/messages/GetPublicKey.py +++ b/core/src/trezor/messages/GetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/HDNodePathType.py b/core/src/trezor/messages/HDNodePathType.py index 239772d4d..7e1592b90 100644 --- a/core/src/trezor/messages/HDNodePathType.py +++ b/core/src/trezor/messages/HDNodePathType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .HDNodeType import HDNodeType diff --git a/core/src/trezor/messages/HDNodeType.py b/core/src/trezor/messages/HDNodeType.py index f87598eed..1e2edb3d5 100644 --- a/core/src/trezor/messages/HDNodeType.py +++ b/core/src/trezor/messages/HDNodeType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/IdentityType.py b/core/src/trezor/messages/IdentityType.py index 50bbf2af9..2985b89d5 100644 --- a/core/src/trezor/messages/IdentityType.py +++ b/core/src/trezor/messages/IdentityType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/Initialize.py b/core/src/trezor/messages/Initialize.py index d4a622710..3d631072a 100644 --- a/core/src/trezor/messages/Initialize.py +++ b/core/src/trezor/messages/Initialize.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/InputScriptType.py b/core/src/trezor/messages/InputScriptType.py index 26243b1ca..68cdda255 100644 --- a/core/src/trezor/messages/InputScriptType.py +++ b/core/src/trezor/messages/InputScriptType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/LiskAddress.py b/core/src/trezor/messages/LiskAddress.py index b872d5635..b1bd56f19 100644 --- a/core/src/trezor/messages/LiskAddress.py +++ b/core/src/trezor/messages/LiskAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/LiskDelegateType.py b/core/src/trezor/messages/LiskDelegateType.py index 972111dd5..ff8069c02 100644 --- a/core/src/trezor/messages/LiskDelegateType.py +++ b/core/src/trezor/messages/LiskDelegateType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/LiskGetAddress.py b/core/src/trezor/messages/LiskGetAddress.py index 66947efe7..f7c8b1228 100644 --- a/core/src/trezor/messages/LiskGetAddress.py +++ b/core/src/trezor/messages/LiskGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/LiskGetPublicKey.py b/core/src/trezor/messages/LiskGetPublicKey.py index fd6c32e94..b455a016a 100644 --- a/core/src/trezor/messages/LiskGetPublicKey.py +++ b/core/src/trezor/messages/LiskGetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/LiskMessageSignature.py b/core/src/trezor/messages/LiskMessageSignature.py index f5090fd5b..65e1705c9 100644 --- a/core/src/trezor/messages/LiskMessageSignature.py +++ b/core/src/trezor/messages/LiskMessageSignature.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/LiskMultisignatureType.py b/core/src/trezor/messages/LiskMultisignatureType.py index 73dac521e..024152fc0 100644 --- a/core/src/trezor/messages/LiskMultisignatureType.py +++ b/core/src/trezor/messages/LiskMultisignatureType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/LiskPublicKey.py b/core/src/trezor/messages/LiskPublicKey.py index de026f409..d5433e634 100644 --- a/core/src/trezor/messages/LiskPublicKey.py +++ b/core/src/trezor/messages/LiskPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/LiskSignMessage.py b/core/src/trezor/messages/LiskSignMessage.py index 4535be026..f8aff9e22 100644 --- a/core/src/trezor/messages/LiskSignMessage.py +++ b/core/src/trezor/messages/LiskSignMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/LiskSignTx.py b/core/src/trezor/messages/LiskSignTx.py index 934cb912a..546823f55 100644 --- a/core/src/trezor/messages/LiskSignTx.py +++ b/core/src/trezor/messages/LiskSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .LiskTransactionCommon import LiskTransactionCommon diff --git a/core/src/trezor/messages/LiskSignatureType.py b/core/src/trezor/messages/LiskSignatureType.py index 8791bd61d..b5a3ec569 100644 --- a/core/src/trezor/messages/LiskSignatureType.py +++ b/core/src/trezor/messages/LiskSignatureType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/LiskSignedTx.py b/core/src/trezor/messages/LiskSignedTx.py index 3f6356353..c67f02c53 100644 --- a/core/src/trezor/messages/LiskSignedTx.py +++ b/core/src/trezor/messages/LiskSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/LiskTransactionAsset.py b/core/src/trezor/messages/LiskTransactionAsset.py index 31b2078c6..3d5630fd0 100644 --- a/core/src/trezor/messages/LiskTransactionAsset.py +++ b/core/src/trezor/messages/LiskTransactionAsset.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .LiskDelegateType import LiskDelegateType diff --git a/core/src/trezor/messages/LiskTransactionCommon.py b/core/src/trezor/messages/LiskTransactionCommon.py index a2dfb7ad4..69ee625f7 100644 --- a/core/src/trezor/messages/LiskTransactionCommon.py +++ b/core/src/trezor/messages/LiskTransactionCommon.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .LiskTransactionAsset import LiskTransactionAsset diff --git a/core/src/trezor/messages/LiskTransactionType.py b/core/src/trezor/messages/LiskTransactionType.py index 4056d0af0..57613e11f 100644 --- a/core/src/trezor/messages/LiskTransactionType.py +++ b/core/src/trezor/messages/LiskTransactionType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/LiskVerifyMessage.py b/core/src/trezor/messages/LiskVerifyMessage.py index 1fd19a955..d47c8fca2 100644 --- a/core/src/trezor/messages/LiskVerifyMessage.py +++ b/core/src/trezor/messages/LiskVerifyMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/LoadDevice.py b/core/src/trezor/messages/LoadDevice.py index c45012ee3..b044f9713 100644 --- a/core/src/trezor/messages/LoadDevice.py +++ b/core/src/trezor/messages/LoadDevice.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/LockDevice.py b/core/src/trezor/messages/LockDevice.py index bf836758b..c28d972fa 100644 --- a/core/src/trezor/messages/LockDevice.py +++ b/core/src/trezor/messages/LockDevice.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MessageSignature.py b/core/src/trezor/messages/MessageSignature.py index 10890212b..035ea827c 100644 --- a/core/src/trezor/messages/MessageSignature.py +++ b/core/src/trezor/messages/MessageSignature.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MessageType.py b/core/src/trezor/messages/MessageType.py index cdfacef27..7568a4cb6 100644 --- a/core/src/trezor/messages/MessageType.py +++ b/core/src/trezor/messages/MessageType.py @@ -2,6 +2,7 @@ # fmt: off from trezor import utils +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/MoneroAccountPublicAddress.py b/core/src/trezor/messages/MoneroAccountPublicAddress.py index 6b0a2d886..f3a1a7389 100644 --- a/core/src/trezor/messages/MoneroAccountPublicAddress.py +++ b/core/src/trezor/messages/MoneroAccountPublicAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroAddress.py b/core/src/trezor/messages/MoneroAddress.py index 483ab3309..90b09d0cd 100644 --- a/core/src/trezor/messages/MoneroAddress.py +++ b/core/src/trezor/messages/MoneroAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroExportedKeyImage.py b/core/src/trezor/messages/MoneroExportedKeyImage.py index 44fb2ba2b..c0043159a 100644 --- a/core/src/trezor/messages/MoneroExportedKeyImage.py +++ b/core/src/trezor/messages/MoneroExportedKeyImage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroGetAddress.py b/core/src/trezor/messages/MoneroGetAddress.py index 455f19947..cf2febb9f 100644 --- a/core/src/trezor/messages/MoneroGetAddress.py +++ b/core/src/trezor/messages/MoneroGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroGetTxKeyAck.py b/core/src/trezor/messages/MoneroGetTxKeyAck.py index cd33d20fd..189b67caa 100644 --- a/core/src/trezor/messages/MoneroGetTxKeyAck.py +++ b/core/src/trezor/messages/MoneroGetTxKeyAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroGetTxKeyRequest.py b/core/src/trezor/messages/MoneroGetTxKeyRequest.py index d09f5cfe6..983cd6309 100644 --- a/core/src/trezor/messages/MoneroGetTxKeyRequest.py +++ b/core/src/trezor/messages/MoneroGetTxKeyRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroGetWatchKey.py b/core/src/trezor/messages/MoneroGetWatchKey.py index a81499d92..30bfd6665 100644 --- a/core/src/trezor/messages/MoneroGetWatchKey.py +++ b/core/src/trezor/messages/MoneroGetWatchKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroKeyImageExportInitAck.py b/core/src/trezor/messages/MoneroKeyImageExportInitAck.py index 2efe152cb..8e1ec0143 100644 --- a/core/src/trezor/messages/MoneroKeyImageExportInitAck.py +++ b/core/src/trezor/messages/MoneroKeyImageExportInitAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroKeyImageExportInitRequest.py b/core/src/trezor/messages/MoneroKeyImageExportInitRequest.py index ae2a68a9f..ee1350f42 100644 --- a/core/src/trezor/messages/MoneroKeyImageExportInitRequest.py +++ b/core/src/trezor/messages/MoneroKeyImageExportInitRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroSubAddressIndicesList import MoneroSubAddressIndicesList diff --git a/core/src/trezor/messages/MoneroKeyImageSyncFinalAck.py b/core/src/trezor/messages/MoneroKeyImageSyncFinalAck.py index 115091b37..40eacc641 100644 --- a/core/src/trezor/messages/MoneroKeyImageSyncFinalAck.py +++ b/core/src/trezor/messages/MoneroKeyImageSyncFinalAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroKeyImageSyncFinalRequest.py b/core/src/trezor/messages/MoneroKeyImageSyncFinalRequest.py index 058b993ae..0842c529c 100644 --- a/core/src/trezor/messages/MoneroKeyImageSyncFinalRequest.py +++ b/core/src/trezor/messages/MoneroKeyImageSyncFinalRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroKeyImageSyncStepAck.py b/core/src/trezor/messages/MoneroKeyImageSyncStepAck.py index c75a0c8ba..ee43a00bb 100644 --- a/core/src/trezor/messages/MoneroKeyImageSyncStepAck.py +++ b/core/src/trezor/messages/MoneroKeyImageSyncStepAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroExportedKeyImage import MoneroExportedKeyImage diff --git a/core/src/trezor/messages/MoneroKeyImageSyncStepRequest.py b/core/src/trezor/messages/MoneroKeyImageSyncStepRequest.py index fd6d70d12..3550a114b 100644 --- a/core/src/trezor/messages/MoneroKeyImageSyncStepRequest.py +++ b/core/src/trezor/messages/MoneroKeyImageSyncStepRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroTransferDetails import MoneroTransferDetails diff --git a/core/src/trezor/messages/MoneroLiveRefreshFinalAck.py b/core/src/trezor/messages/MoneroLiveRefreshFinalAck.py index ebad29b72..00a45a07a 100644 --- a/core/src/trezor/messages/MoneroLiveRefreshFinalAck.py +++ b/core/src/trezor/messages/MoneroLiveRefreshFinalAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroLiveRefreshFinalRequest.py b/core/src/trezor/messages/MoneroLiveRefreshFinalRequest.py index bb184602e..7515c9528 100644 --- a/core/src/trezor/messages/MoneroLiveRefreshFinalRequest.py +++ b/core/src/trezor/messages/MoneroLiveRefreshFinalRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroLiveRefreshStartAck.py b/core/src/trezor/messages/MoneroLiveRefreshStartAck.py index 565fd5544..c0b556781 100644 --- a/core/src/trezor/messages/MoneroLiveRefreshStartAck.py +++ b/core/src/trezor/messages/MoneroLiveRefreshStartAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroLiveRefreshStartRequest.py b/core/src/trezor/messages/MoneroLiveRefreshStartRequest.py index 049f32964..f9751e260 100644 --- a/core/src/trezor/messages/MoneroLiveRefreshStartRequest.py +++ b/core/src/trezor/messages/MoneroLiveRefreshStartRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroLiveRefreshStepAck.py b/core/src/trezor/messages/MoneroLiveRefreshStepAck.py index 6f6b6736f..0a07a05b5 100644 --- a/core/src/trezor/messages/MoneroLiveRefreshStepAck.py +++ b/core/src/trezor/messages/MoneroLiveRefreshStepAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroLiveRefreshStepRequest.py b/core/src/trezor/messages/MoneroLiveRefreshStepRequest.py index 02502b235..a35ee58f3 100644 --- a/core/src/trezor/messages/MoneroLiveRefreshStepRequest.py +++ b/core/src/trezor/messages/MoneroLiveRefreshStepRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroMultisigKLRki.py b/core/src/trezor/messages/MoneroMultisigKLRki.py index c52d9f22c..3e55b3c86 100644 --- a/core/src/trezor/messages/MoneroMultisigKLRki.py +++ b/core/src/trezor/messages/MoneroMultisigKLRki.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroOutputEntry.py b/core/src/trezor/messages/MoneroOutputEntry.py index 841ae9fa0..676db211d 100644 --- a/core/src/trezor/messages/MoneroOutputEntry.py +++ b/core/src/trezor/messages/MoneroOutputEntry.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroRctKeyPublic import MoneroRctKeyPublic diff --git a/core/src/trezor/messages/MoneroRctKeyPublic.py b/core/src/trezor/messages/MoneroRctKeyPublic.py index 2e27e8a14..24efa002d 100644 --- a/core/src/trezor/messages/MoneroRctKeyPublic.py +++ b/core/src/trezor/messages/MoneroRctKeyPublic.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroRingCtSig.py b/core/src/trezor/messages/MoneroRingCtSig.py index 1d62e2aa6..4a26c8c8a 100644 --- a/core/src/trezor/messages/MoneroRingCtSig.py +++ b/core/src/trezor/messages/MoneroRingCtSig.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroSubAddressIndicesList.py b/core/src/trezor/messages/MoneroSubAddressIndicesList.py index 3f74af6ac..5c7e201d6 100644 --- a/core/src/trezor/messages/MoneroSubAddressIndicesList.py +++ b/core/src/trezor/messages/MoneroSubAddressIndicesList.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroTransactionAllInputsSetAck.py b/core/src/trezor/messages/MoneroTransactionAllInputsSetAck.py index a1016d3d3..3fce37779 100644 --- a/core/src/trezor/messages/MoneroTransactionAllInputsSetAck.py +++ b/core/src/trezor/messages/MoneroTransactionAllInputsSetAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroTransactionRsigData import MoneroTransactionRsigData diff --git a/core/src/trezor/messages/MoneroTransactionAllInputsSetRequest.py b/core/src/trezor/messages/MoneroTransactionAllInputsSetRequest.py index 49bbba29a..164c0a666 100644 --- a/core/src/trezor/messages/MoneroTransactionAllInputsSetRequest.py +++ b/core/src/trezor/messages/MoneroTransactionAllInputsSetRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroTransactionAllOutSetAck.py b/core/src/trezor/messages/MoneroTransactionAllOutSetAck.py index 050a12ebb..0c7595ed6 100644 --- a/core/src/trezor/messages/MoneroTransactionAllOutSetAck.py +++ b/core/src/trezor/messages/MoneroTransactionAllOutSetAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroRingCtSig import MoneroRingCtSig diff --git a/core/src/trezor/messages/MoneroTransactionAllOutSetRequest.py b/core/src/trezor/messages/MoneroTransactionAllOutSetRequest.py index b9f86638f..5b18d7c74 100644 --- a/core/src/trezor/messages/MoneroTransactionAllOutSetRequest.py +++ b/core/src/trezor/messages/MoneroTransactionAllOutSetRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroTransactionRsigData import MoneroTransactionRsigData diff --git a/core/src/trezor/messages/MoneroTransactionData.py b/core/src/trezor/messages/MoneroTransactionData.py index 4b42cf7b4..c42da5dae 100644 --- a/core/src/trezor/messages/MoneroTransactionData.py +++ b/core/src/trezor/messages/MoneroTransactionData.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroTransactionDestinationEntry import MoneroTransactionDestinationEntry diff --git a/core/src/trezor/messages/MoneroTransactionDestinationEntry.py b/core/src/trezor/messages/MoneroTransactionDestinationEntry.py index 44c61703e..a97e2b54f 100644 --- a/core/src/trezor/messages/MoneroTransactionDestinationEntry.py +++ b/core/src/trezor/messages/MoneroTransactionDestinationEntry.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroAccountPublicAddress import MoneroAccountPublicAddress diff --git a/core/src/trezor/messages/MoneroTransactionFinalAck.py b/core/src/trezor/messages/MoneroTransactionFinalAck.py index 73e1d01a9..32e86cc1e 100644 --- a/core/src/trezor/messages/MoneroTransactionFinalAck.py +++ b/core/src/trezor/messages/MoneroTransactionFinalAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroTransactionFinalRequest.py b/core/src/trezor/messages/MoneroTransactionFinalRequest.py index ab46a573e..268da098b 100644 --- a/core/src/trezor/messages/MoneroTransactionFinalRequest.py +++ b/core/src/trezor/messages/MoneroTransactionFinalRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroTransactionInitAck.py b/core/src/trezor/messages/MoneroTransactionInitAck.py index 08b23235f..83643efe0 100644 --- a/core/src/trezor/messages/MoneroTransactionInitAck.py +++ b/core/src/trezor/messages/MoneroTransactionInitAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroTransactionRsigData import MoneroTransactionRsigData diff --git a/core/src/trezor/messages/MoneroTransactionInitRequest.py b/core/src/trezor/messages/MoneroTransactionInitRequest.py index b7ab8a74c..5681205ac 100644 --- a/core/src/trezor/messages/MoneroTransactionInitRequest.py +++ b/core/src/trezor/messages/MoneroTransactionInitRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroTransactionData import MoneroTransactionData diff --git a/core/src/trezor/messages/MoneroTransactionInputViniAck.py b/core/src/trezor/messages/MoneroTransactionInputViniAck.py index 643ec2395..f43f1af43 100644 --- a/core/src/trezor/messages/MoneroTransactionInputViniAck.py +++ b/core/src/trezor/messages/MoneroTransactionInputViniAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroTransactionInputViniRequest.py b/core/src/trezor/messages/MoneroTransactionInputViniRequest.py index fd11ee507..b4d0fca84 100644 --- a/core/src/trezor/messages/MoneroTransactionInputViniRequest.py +++ b/core/src/trezor/messages/MoneroTransactionInputViniRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroTransactionSourceEntry import MoneroTransactionSourceEntry diff --git a/core/src/trezor/messages/MoneroTransactionInputsPermutationAck.py b/core/src/trezor/messages/MoneroTransactionInputsPermutationAck.py index 16f1a7bd2..32510553d 100644 --- a/core/src/trezor/messages/MoneroTransactionInputsPermutationAck.py +++ b/core/src/trezor/messages/MoneroTransactionInputsPermutationAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroTransactionInputsPermutationRequest.py b/core/src/trezor/messages/MoneroTransactionInputsPermutationRequest.py index dba45b2eb..766b11ce3 100644 --- a/core/src/trezor/messages/MoneroTransactionInputsPermutationRequest.py +++ b/core/src/trezor/messages/MoneroTransactionInputsPermutationRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroTransactionRsigData.py b/core/src/trezor/messages/MoneroTransactionRsigData.py index f848cf3b9..8fb992ccc 100644 --- a/core/src/trezor/messages/MoneroTransactionRsigData.py +++ b/core/src/trezor/messages/MoneroTransactionRsigData.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroTransactionSetInputAck.py b/core/src/trezor/messages/MoneroTransactionSetInputAck.py index 24bbff4c4..fe1838263 100644 --- a/core/src/trezor/messages/MoneroTransactionSetInputAck.py +++ b/core/src/trezor/messages/MoneroTransactionSetInputAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroTransactionSetInputRequest.py b/core/src/trezor/messages/MoneroTransactionSetInputRequest.py index 2a374fce9..608ebe0a4 100644 --- a/core/src/trezor/messages/MoneroTransactionSetInputRequest.py +++ b/core/src/trezor/messages/MoneroTransactionSetInputRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroTransactionSourceEntry import MoneroTransactionSourceEntry diff --git a/core/src/trezor/messages/MoneroTransactionSetOutputAck.py b/core/src/trezor/messages/MoneroTransactionSetOutputAck.py index 696688fc7..83bff1723 100644 --- a/core/src/trezor/messages/MoneroTransactionSetOutputAck.py +++ b/core/src/trezor/messages/MoneroTransactionSetOutputAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroTransactionRsigData import MoneroTransactionRsigData diff --git a/core/src/trezor/messages/MoneroTransactionSetOutputRequest.py b/core/src/trezor/messages/MoneroTransactionSetOutputRequest.py index c6df072f6..5b42e7b60 100644 --- a/core/src/trezor/messages/MoneroTransactionSetOutputRequest.py +++ b/core/src/trezor/messages/MoneroTransactionSetOutputRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroTransactionDestinationEntry import MoneroTransactionDestinationEntry diff --git a/core/src/trezor/messages/MoneroTransactionSignInputAck.py b/core/src/trezor/messages/MoneroTransactionSignInputAck.py index 8837dd19a..29a8ff572 100644 --- a/core/src/trezor/messages/MoneroTransactionSignInputAck.py +++ b/core/src/trezor/messages/MoneroTransactionSignInputAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroTransactionSignInputRequest.py b/core/src/trezor/messages/MoneroTransactionSignInputRequest.py index 3a3d03eb9..0e6e2990c 100644 --- a/core/src/trezor/messages/MoneroTransactionSignInputRequest.py +++ b/core/src/trezor/messages/MoneroTransactionSignInputRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroTransactionSourceEntry import MoneroTransactionSourceEntry diff --git a/core/src/trezor/messages/MoneroTransactionSourceEntry.py b/core/src/trezor/messages/MoneroTransactionSourceEntry.py index 333f56ee0..f780b8475 100644 --- a/core/src/trezor/messages/MoneroTransactionSourceEntry.py +++ b/core/src/trezor/messages/MoneroTransactionSourceEntry.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MoneroMultisigKLRki import MoneroMultisigKLRki diff --git a/core/src/trezor/messages/MoneroTransferDetails.py b/core/src/trezor/messages/MoneroTransferDetails.py index 3c92050c3..0880bd19d 100644 --- a/core/src/trezor/messages/MoneroTransferDetails.py +++ b/core/src/trezor/messages/MoneroTransferDetails.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MoneroWatchKey.py b/core/src/trezor/messages/MoneroWatchKey.py index 4cc708454..5eca36629 100644 --- a/core/src/trezor/messages/MoneroWatchKey.py +++ b/core/src/trezor/messages/MoneroWatchKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/MultisigRedeemScriptType.py b/core/src/trezor/messages/MultisigRedeemScriptType.py index d6f9b6f72..3da884c60 100644 --- a/core/src/trezor/messages/MultisigRedeemScriptType.py +++ b/core/src/trezor/messages/MultisigRedeemScriptType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .HDNodePathType import HDNodePathType diff --git a/core/src/trezor/messages/NEMAddress.py b/core/src/trezor/messages/NEMAddress.py index 05243b64a..12761e4b6 100644 --- a/core/src/trezor/messages/NEMAddress.py +++ b/core/src/trezor/messages/NEMAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/NEMAggregateModification.py b/core/src/trezor/messages/NEMAggregateModification.py index d7cf6cfd8..4a5fbae96 100644 --- a/core/src/trezor/messages/NEMAggregateModification.py +++ b/core/src/trezor/messages/NEMAggregateModification.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .NEMCosignatoryModification import NEMCosignatoryModification diff --git a/core/src/trezor/messages/NEMCosignatoryModification.py b/core/src/trezor/messages/NEMCosignatoryModification.py index 954093f5d..58c7b2370 100644 --- a/core/src/trezor/messages/NEMCosignatoryModification.py +++ b/core/src/trezor/messages/NEMCosignatoryModification.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/NEMGetAddress.py b/core/src/trezor/messages/NEMGetAddress.py index 0b07a9f1d..18946a50c 100644 --- a/core/src/trezor/messages/NEMGetAddress.py +++ b/core/src/trezor/messages/NEMGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/NEMImportanceTransfer.py b/core/src/trezor/messages/NEMImportanceTransfer.py index 73b8e3875..538ea8b82 100644 --- a/core/src/trezor/messages/NEMImportanceTransfer.py +++ b/core/src/trezor/messages/NEMImportanceTransfer.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/NEMImportanceTransferMode.py b/core/src/trezor/messages/NEMImportanceTransferMode.py index 13f31fab3..0639db32d 100644 --- a/core/src/trezor/messages/NEMImportanceTransferMode.py +++ b/core/src/trezor/messages/NEMImportanceTransferMode.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/NEMModificationType.py b/core/src/trezor/messages/NEMModificationType.py index f414bd2b0..3e364d3ba 100644 --- a/core/src/trezor/messages/NEMModificationType.py +++ b/core/src/trezor/messages/NEMModificationType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/NEMMosaic.py b/core/src/trezor/messages/NEMMosaic.py index da179d6a9..ddb530623 100644 --- a/core/src/trezor/messages/NEMMosaic.py +++ b/core/src/trezor/messages/NEMMosaic.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/NEMMosaicCreation.py b/core/src/trezor/messages/NEMMosaicCreation.py index aac43c9b6..8b55f939e 100644 --- a/core/src/trezor/messages/NEMMosaicCreation.py +++ b/core/src/trezor/messages/NEMMosaicCreation.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .NEMMosaicDefinition import NEMMosaicDefinition diff --git a/core/src/trezor/messages/NEMMosaicDefinition.py b/core/src/trezor/messages/NEMMosaicDefinition.py index 2548d916c..98e8f11d6 100644 --- a/core/src/trezor/messages/NEMMosaicDefinition.py +++ b/core/src/trezor/messages/NEMMosaicDefinition.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/NEMMosaicLevy.py b/core/src/trezor/messages/NEMMosaicLevy.py index 05e7985d4..de636afe5 100644 --- a/core/src/trezor/messages/NEMMosaicLevy.py +++ b/core/src/trezor/messages/NEMMosaicLevy.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/NEMMosaicSupplyChange.py b/core/src/trezor/messages/NEMMosaicSupplyChange.py index 4c0be9888..d3a5eb2ac 100644 --- a/core/src/trezor/messages/NEMMosaicSupplyChange.py +++ b/core/src/trezor/messages/NEMMosaicSupplyChange.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/NEMProvisionNamespace.py b/core/src/trezor/messages/NEMProvisionNamespace.py index a20880512..43265ae38 100644 --- a/core/src/trezor/messages/NEMProvisionNamespace.py +++ b/core/src/trezor/messages/NEMProvisionNamespace.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/NEMSignTx.py b/core/src/trezor/messages/NEMSignTx.py index bfb8d9a66..c643fae2b 100644 --- a/core/src/trezor/messages/NEMSignTx.py +++ b/core/src/trezor/messages/NEMSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .NEMAggregateModification import NEMAggregateModification diff --git a/core/src/trezor/messages/NEMSignedTx.py b/core/src/trezor/messages/NEMSignedTx.py index 8563a8a0b..9815ae1f2 100644 --- a/core/src/trezor/messages/NEMSignedTx.py +++ b/core/src/trezor/messages/NEMSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/NEMSupplyChangeType.py b/core/src/trezor/messages/NEMSupplyChangeType.py index 86a3d43e1..5255c1e7f 100644 --- a/core/src/trezor/messages/NEMSupplyChangeType.py +++ b/core/src/trezor/messages/NEMSupplyChangeType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/NEMTransactionCommon.py b/core/src/trezor/messages/NEMTransactionCommon.py index 50b01389c..7cffc7370 100644 --- a/core/src/trezor/messages/NEMTransactionCommon.py +++ b/core/src/trezor/messages/NEMTransactionCommon.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/NEMTransfer.py b/core/src/trezor/messages/NEMTransfer.py index 64a90e859..58befa135 100644 --- a/core/src/trezor/messages/NEMTransfer.py +++ b/core/src/trezor/messages/NEMTransfer.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .NEMMosaic import NEMMosaic diff --git a/core/src/trezor/messages/NextU2FCounter.py b/core/src/trezor/messages/NextU2FCounter.py index 157f89a5a..041a6f158 100644 --- a/core/src/trezor/messages/NextU2FCounter.py +++ b/core/src/trezor/messages/NextU2FCounter.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/OutputScriptType.py b/core/src/trezor/messages/OutputScriptType.py index 94116b236..157058350 100644 --- a/core/src/trezor/messages/OutputScriptType.py +++ b/core/src/trezor/messages/OutputScriptType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/OwnershipId.py b/core/src/trezor/messages/OwnershipId.py index 0eaeae711..a75bd0e90 100644 --- a/core/src/trezor/messages/OwnershipId.py +++ b/core/src/trezor/messages/OwnershipId.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/OwnershipProof.py b/core/src/trezor/messages/OwnershipProof.py index a9793c477..6e2312f1b 100644 --- a/core/src/trezor/messages/OwnershipProof.py +++ b/core/src/trezor/messages/OwnershipProof.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/PassphraseAck.py b/core/src/trezor/messages/PassphraseAck.py index 6e46f06d4..df26f1da4 100644 --- a/core/src/trezor/messages/PassphraseAck.py +++ b/core/src/trezor/messages/PassphraseAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/PassphraseRequest.py b/core/src/trezor/messages/PassphraseRequest.py index 1411e5f93..8316830cd 100644 --- a/core/src/trezor/messages/PassphraseRequest.py +++ b/core/src/trezor/messages/PassphraseRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/Ping.py b/core/src/trezor/messages/Ping.py index fe96b23bd..62ea5556c 100644 --- a/core/src/trezor/messages/Ping.py +++ b/core/src/trezor/messages/Ping.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/PreauthorizedRequest.py b/core/src/trezor/messages/PreauthorizedRequest.py index ed2eb8f79..1a33889ca 100644 --- a/core/src/trezor/messages/PreauthorizedRequest.py +++ b/core/src/trezor/messages/PreauthorizedRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/PrevInput.py b/core/src/trezor/messages/PrevInput.py index a78531bf4..043c34cff 100644 --- a/core/src/trezor/messages/PrevInput.py +++ b/core/src/trezor/messages/PrevInput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/PrevOutput.py b/core/src/trezor/messages/PrevOutput.py index 82df7f217..2ca9d19b0 100644 --- a/core/src/trezor/messages/PrevOutput.py +++ b/core/src/trezor/messages/PrevOutput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/PrevTx.py b/core/src/trezor/messages/PrevTx.py index 6340bbaee..9b56e498d 100644 --- a/core/src/trezor/messages/PrevTx.py +++ b/core/src/trezor/messages/PrevTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/PublicKey.py b/core/src/trezor/messages/PublicKey.py index dae1216d2..ced91bd7e 100644 --- a/core/src/trezor/messages/PublicKey.py +++ b/core/src/trezor/messages/PublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .HDNodeType import HDNodeType diff --git a/core/src/trezor/messages/RebootToBootloader.py b/core/src/trezor/messages/RebootToBootloader.py index 0dfc43b05..c6045e476 100644 --- a/core/src/trezor/messages/RebootToBootloader.py +++ b/core/src/trezor/messages/RebootToBootloader.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/RecoveryDevice.py b/core/src/trezor/messages/RecoveryDevice.py index 4dcb6e906..7135f8838 100644 --- a/core/src/trezor/messages/RecoveryDevice.py +++ b/core/src/trezor/messages/RecoveryDevice.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/RecoveryDeviceType.py b/core/src/trezor/messages/RecoveryDeviceType.py index 965423292..f8439f677 100644 --- a/core/src/trezor/messages/RecoveryDeviceType.py +++ b/core/src/trezor/messages/RecoveryDeviceType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/RequestType.py b/core/src/trezor/messages/RequestType.py index baffc605c..58ac05af3 100644 --- a/core/src/trezor/messages/RequestType.py +++ b/core/src/trezor/messages/RequestType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/ResetDevice.py b/core/src/trezor/messages/ResetDevice.py index afbab8e1b..d77e9094c 100644 --- a/core/src/trezor/messages/ResetDevice.py +++ b/core/src/trezor/messages/ResetDevice.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/RippleAddress.py b/core/src/trezor/messages/RippleAddress.py index e8f134e52..79ae85ef5 100644 --- a/core/src/trezor/messages/RippleAddress.py +++ b/core/src/trezor/messages/RippleAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/RippleGetAddress.py b/core/src/trezor/messages/RippleGetAddress.py index 8951523dc..655052ab8 100644 --- a/core/src/trezor/messages/RippleGetAddress.py +++ b/core/src/trezor/messages/RippleGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/RipplePayment.py b/core/src/trezor/messages/RipplePayment.py index e4d47b133..709668279 100644 --- a/core/src/trezor/messages/RipplePayment.py +++ b/core/src/trezor/messages/RipplePayment.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/RippleSignTx.py b/core/src/trezor/messages/RippleSignTx.py index 348d738d8..017a9c8fa 100644 --- a/core/src/trezor/messages/RippleSignTx.py +++ b/core/src/trezor/messages/RippleSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .RipplePayment import RipplePayment diff --git a/core/src/trezor/messages/RippleSignedTx.py b/core/src/trezor/messages/RippleSignedTx.py index a29018a7b..77c6ca5a5 100644 --- a/core/src/trezor/messages/RippleSignedTx.py +++ b/core/src/trezor/messages/RippleSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/SafetyCheckLevel.py b/core/src/trezor/messages/SafetyCheckLevel.py index 0bc3566c0..656fb76d2 100644 --- a/core/src/trezor/messages/SafetyCheckLevel.py +++ b/core/src/trezor/messages/SafetyCheckLevel.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/SdProtect.py b/core/src/trezor/messages/SdProtect.py index 490c230db..3637c7cfb 100644 --- a/core/src/trezor/messages/SdProtect.py +++ b/core/src/trezor/messages/SdProtect.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/SdProtectOperationType.py b/core/src/trezor/messages/SdProtectOperationType.py index a979dc843..f339a9be5 100644 --- a/core/src/trezor/messages/SdProtectOperationType.py +++ b/core/src/trezor/messages/SdProtectOperationType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/SetU2FCounter.py b/core/src/trezor/messages/SetU2FCounter.py index 83749d928..5b878530b 100644 --- a/core/src/trezor/messages/SetU2FCounter.py +++ b/core/src/trezor/messages/SetU2FCounter.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/SignIdentity.py b/core/src/trezor/messages/SignIdentity.py index cd56b45b3..da5e1129e 100644 --- a/core/src/trezor/messages/SignIdentity.py +++ b/core/src/trezor/messages/SignIdentity.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .IdentityType import IdentityType diff --git a/core/src/trezor/messages/SignMessage.py b/core/src/trezor/messages/SignMessage.py index e91701f0c..13bdaee91 100644 --- a/core/src/trezor/messages/SignMessage.py +++ b/core/src/trezor/messages/SignMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/SignTx.py b/core/src/trezor/messages/SignTx.py index ce9672d9a..ab85d09b3 100644 --- a/core/src/trezor/messages/SignTx.py +++ b/core/src/trezor/messages/SignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/SignedIdentity.py b/core/src/trezor/messages/SignedIdentity.py index 795cdd258..cc28e1c8d 100644 --- a/core/src/trezor/messages/SignedIdentity.py +++ b/core/src/trezor/messages/SignedIdentity.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/StellarAccountMergeOp.py b/core/src/trezor/messages/StellarAccountMergeOp.py index dcd1cff1f..b59340021 100644 --- a/core/src/trezor/messages/StellarAccountMergeOp.py +++ b/core/src/trezor/messages/StellarAccountMergeOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/StellarAddress.py b/core/src/trezor/messages/StellarAddress.py index 943c26113..f4157f085 100644 --- a/core/src/trezor/messages/StellarAddress.py +++ b/core/src/trezor/messages/StellarAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/StellarAllowTrustOp.py b/core/src/trezor/messages/StellarAllowTrustOp.py index 23aa52fd3..ebea20a12 100644 --- a/core/src/trezor/messages/StellarAllowTrustOp.py +++ b/core/src/trezor/messages/StellarAllowTrustOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/StellarAssetType.py b/core/src/trezor/messages/StellarAssetType.py index 1a0d15627..0ed624f81 100644 --- a/core/src/trezor/messages/StellarAssetType.py +++ b/core/src/trezor/messages/StellarAssetType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/StellarBumpSequenceOp.py b/core/src/trezor/messages/StellarBumpSequenceOp.py index b10d07c84..2ece1176a 100644 --- a/core/src/trezor/messages/StellarBumpSequenceOp.py +++ b/core/src/trezor/messages/StellarBumpSequenceOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/StellarChangeTrustOp.py b/core/src/trezor/messages/StellarChangeTrustOp.py index 6abecb273..418db3d8f 100644 --- a/core/src/trezor/messages/StellarChangeTrustOp.py +++ b/core/src/trezor/messages/StellarChangeTrustOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .StellarAssetType import StellarAssetType diff --git a/core/src/trezor/messages/StellarCreateAccountOp.py b/core/src/trezor/messages/StellarCreateAccountOp.py index b24f46715..6cc5e7e28 100644 --- a/core/src/trezor/messages/StellarCreateAccountOp.py +++ b/core/src/trezor/messages/StellarCreateAccountOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/StellarCreatePassiveOfferOp.py b/core/src/trezor/messages/StellarCreatePassiveOfferOp.py index 85233ec99..dbdb0b3f1 100644 --- a/core/src/trezor/messages/StellarCreatePassiveOfferOp.py +++ b/core/src/trezor/messages/StellarCreatePassiveOfferOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .StellarAssetType import StellarAssetType diff --git a/core/src/trezor/messages/StellarGetAddress.py b/core/src/trezor/messages/StellarGetAddress.py index aef934498..13987b658 100644 --- a/core/src/trezor/messages/StellarGetAddress.py +++ b/core/src/trezor/messages/StellarGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/StellarManageDataOp.py b/core/src/trezor/messages/StellarManageDataOp.py index a344547bc..058e5267e 100644 --- a/core/src/trezor/messages/StellarManageDataOp.py +++ b/core/src/trezor/messages/StellarManageDataOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/StellarManageOfferOp.py b/core/src/trezor/messages/StellarManageOfferOp.py index ac4325ae7..c8eb4aa97 100644 --- a/core/src/trezor/messages/StellarManageOfferOp.py +++ b/core/src/trezor/messages/StellarManageOfferOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .StellarAssetType import StellarAssetType diff --git a/core/src/trezor/messages/StellarPathPaymentOp.py b/core/src/trezor/messages/StellarPathPaymentOp.py index db17dd08f..b8dc37893 100644 --- a/core/src/trezor/messages/StellarPathPaymentOp.py +++ b/core/src/trezor/messages/StellarPathPaymentOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .StellarAssetType import StellarAssetType diff --git a/core/src/trezor/messages/StellarPaymentOp.py b/core/src/trezor/messages/StellarPaymentOp.py index f2cb9891e..fa1dedcd2 100644 --- a/core/src/trezor/messages/StellarPaymentOp.py +++ b/core/src/trezor/messages/StellarPaymentOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .StellarAssetType import StellarAssetType diff --git a/core/src/trezor/messages/StellarSetOptionsOp.py b/core/src/trezor/messages/StellarSetOptionsOp.py index 3736be322..7eb8d1ff5 100644 --- a/core/src/trezor/messages/StellarSetOptionsOp.py +++ b/core/src/trezor/messages/StellarSetOptionsOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/StellarSignTx.py b/core/src/trezor/messages/StellarSignTx.py index 371152a06..0aeb79a3c 100644 --- a/core/src/trezor/messages/StellarSignTx.py +++ b/core/src/trezor/messages/StellarSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/StellarSignedTx.py b/core/src/trezor/messages/StellarSignedTx.py index 68a0c31f1..02117888f 100644 --- a/core/src/trezor/messages/StellarSignedTx.py +++ b/core/src/trezor/messages/StellarSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/StellarTxOpRequest.py b/core/src/trezor/messages/StellarTxOpRequest.py index 8d1cb59b2..767d81495 100644 --- a/core/src/trezor/messages/StellarTxOpRequest.py +++ b/core/src/trezor/messages/StellarTxOpRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/Success.py b/core/src/trezor/messages/Success.py index 70676d638..fa40153c8 100644 --- a/core/src/trezor/messages/Success.py +++ b/core/src/trezor/messages/Success.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TezosAddress.py b/core/src/trezor/messages/TezosAddress.py index ae0ad6fe5..e71485a5a 100644 --- a/core/src/trezor/messages/TezosAddress.py +++ b/core/src/trezor/messages/TezosAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TezosBallotOp.py b/core/src/trezor/messages/TezosBallotOp.py index 010a726c3..14b9c1a48 100644 --- a/core/src/trezor/messages/TezosBallotOp.py +++ b/core/src/trezor/messages/TezosBallotOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TezosBallotType.py b/core/src/trezor/messages/TezosBallotType.py index cb7c9a096..c0763dbb8 100644 --- a/core/src/trezor/messages/TezosBallotType.py +++ b/core/src/trezor/messages/TezosBallotType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/TezosContractID.py b/core/src/trezor/messages/TezosContractID.py index 3e30f15e8..881a8bff0 100644 --- a/core/src/trezor/messages/TezosContractID.py +++ b/core/src/trezor/messages/TezosContractID.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TezosContractType.py b/core/src/trezor/messages/TezosContractType.py index d6d66a2fa..d0e990931 100644 --- a/core/src/trezor/messages/TezosContractType.py +++ b/core/src/trezor/messages/TezosContractType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/core/src/trezor/messages/TezosDelegationOp.py b/core/src/trezor/messages/TezosDelegationOp.py index 28683e677..84b1153a0 100644 --- a/core/src/trezor/messages/TezosDelegationOp.py +++ b/core/src/trezor/messages/TezosDelegationOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TezosGetAddress.py b/core/src/trezor/messages/TezosGetAddress.py index 7e734352c..63115c444 100644 --- a/core/src/trezor/messages/TezosGetAddress.py +++ b/core/src/trezor/messages/TezosGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TezosGetPublicKey.py b/core/src/trezor/messages/TezosGetPublicKey.py index 13c7a5dab..8bfeae1bd 100644 --- a/core/src/trezor/messages/TezosGetPublicKey.py +++ b/core/src/trezor/messages/TezosGetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TezosManagerTransfer.py b/core/src/trezor/messages/TezosManagerTransfer.py index abc8ec60c..087f23a2b 100644 --- a/core/src/trezor/messages/TezosManagerTransfer.py +++ b/core/src/trezor/messages/TezosManagerTransfer.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TezosContractID import TezosContractID diff --git a/core/src/trezor/messages/TezosOriginationOp.py b/core/src/trezor/messages/TezosOriginationOp.py index 65c9a02ad..7bd46c215 100644 --- a/core/src/trezor/messages/TezosOriginationOp.py +++ b/core/src/trezor/messages/TezosOriginationOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TezosParametersManager.py b/core/src/trezor/messages/TezosParametersManager.py index f4a156447..60962b99c 100644 --- a/core/src/trezor/messages/TezosParametersManager.py +++ b/core/src/trezor/messages/TezosParametersManager.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TezosManagerTransfer import TezosManagerTransfer diff --git a/core/src/trezor/messages/TezosProposalOp.py b/core/src/trezor/messages/TezosProposalOp.py index 6bf3c870d..4809fdbd5 100644 --- a/core/src/trezor/messages/TezosProposalOp.py +++ b/core/src/trezor/messages/TezosProposalOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TezosPublicKey.py b/core/src/trezor/messages/TezosPublicKey.py index 939ccbcc1..ee82d5382 100644 --- a/core/src/trezor/messages/TezosPublicKey.py +++ b/core/src/trezor/messages/TezosPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TezosRevealOp.py b/core/src/trezor/messages/TezosRevealOp.py index deaa10907..a47d0676f 100644 --- a/core/src/trezor/messages/TezosRevealOp.py +++ b/core/src/trezor/messages/TezosRevealOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TezosSignTx.py b/core/src/trezor/messages/TezosSignTx.py index 73ee56ffe..4c35e2b68 100644 --- a/core/src/trezor/messages/TezosSignTx.py +++ b/core/src/trezor/messages/TezosSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TezosBallotOp import TezosBallotOp diff --git a/core/src/trezor/messages/TezosSignedTx.py b/core/src/trezor/messages/TezosSignedTx.py index dea63c87d..2fd0f1d7f 100644 --- a/core/src/trezor/messages/TezosSignedTx.py +++ b/core/src/trezor/messages/TezosSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TezosTransactionOp.py b/core/src/trezor/messages/TezosTransactionOp.py index d42b53cd7..6375ea2ee 100644 --- a/core/src/trezor/messages/TezosTransactionOp.py +++ b/core/src/trezor/messages/TezosTransactionOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TezosContractID import TezosContractID diff --git a/core/src/trezor/messages/TransactionType.py b/core/src/trezor/messages/TransactionType.py index bdba7f227..a9a7ba905 100644 --- a/core/src/trezor/messages/TransactionType.py +++ b/core/src/trezor/messages/TransactionType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TxInputType import TxInputType diff --git a/core/src/trezor/messages/TxAck.py b/core/src/trezor/messages/TxAck.py index b8bd80d1a..6ceecec75 100644 --- a/core/src/trezor/messages/TxAck.py +++ b/core/src/trezor/messages/TxAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TransactionType import TransactionType diff --git a/core/src/trezor/messages/TxAckInput.py b/core/src/trezor/messages/TxAckInput.py index 1d6c7993b..05d4ac1f7 100644 --- a/core/src/trezor/messages/TxAckInput.py +++ b/core/src/trezor/messages/TxAckInput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TxAckInputWrapper import TxAckInputWrapper diff --git a/core/src/trezor/messages/TxAckInputWrapper.py b/core/src/trezor/messages/TxAckInputWrapper.py index 54c72312d..1f8ce3e62 100644 --- a/core/src/trezor/messages/TxAckInputWrapper.py +++ b/core/src/trezor/messages/TxAckInputWrapper.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TxInput import TxInput diff --git a/core/src/trezor/messages/TxAckOutput.py b/core/src/trezor/messages/TxAckOutput.py index 1888bf613..219a84e3c 100644 --- a/core/src/trezor/messages/TxAckOutput.py +++ b/core/src/trezor/messages/TxAckOutput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TxAckOutputWrapper import TxAckOutputWrapper diff --git a/core/src/trezor/messages/TxAckOutputWrapper.py b/core/src/trezor/messages/TxAckOutputWrapper.py index 7bebf5af7..d201f5856 100644 --- a/core/src/trezor/messages/TxAckOutputWrapper.py +++ b/core/src/trezor/messages/TxAckOutputWrapper.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TxOutput import TxOutput diff --git a/core/src/trezor/messages/TxAckPrevExtraData.py b/core/src/trezor/messages/TxAckPrevExtraData.py index b9bd2c17e..02c8a7b22 100644 --- a/core/src/trezor/messages/TxAckPrevExtraData.py +++ b/core/src/trezor/messages/TxAckPrevExtraData.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TxAckPrevExtraDataWrapper import TxAckPrevExtraDataWrapper diff --git a/core/src/trezor/messages/TxAckPrevExtraDataWrapper.py b/core/src/trezor/messages/TxAckPrevExtraDataWrapper.py index 3535374f5..03e59983d 100644 --- a/core/src/trezor/messages/TxAckPrevExtraDataWrapper.py +++ b/core/src/trezor/messages/TxAckPrevExtraDataWrapper.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TxAckPrevInput.py b/core/src/trezor/messages/TxAckPrevInput.py index 9106b0d73..e24ebbe9d 100644 --- a/core/src/trezor/messages/TxAckPrevInput.py +++ b/core/src/trezor/messages/TxAckPrevInput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TxAckPrevInputWrapper import TxAckPrevInputWrapper diff --git a/core/src/trezor/messages/TxAckPrevInputWrapper.py b/core/src/trezor/messages/TxAckPrevInputWrapper.py index e6f6f4056..6f316fbcf 100644 --- a/core/src/trezor/messages/TxAckPrevInputWrapper.py +++ b/core/src/trezor/messages/TxAckPrevInputWrapper.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .PrevInput import PrevInput diff --git a/core/src/trezor/messages/TxAckPrevMeta.py b/core/src/trezor/messages/TxAckPrevMeta.py index 175cb1806..48f64c63a 100644 --- a/core/src/trezor/messages/TxAckPrevMeta.py +++ b/core/src/trezor/messages/TxAckPrevMeta.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .PrevTx import PrevTx diff --git a/core/src/trezor/messages/TxAckPrevOutput.py b/core/src/trezor/messages/TxAckPrevOutput.py index 4c24c8e6a..3a478016e 100644 --- a/core/src/trezor/messages/TxAckPrevOutput.py +++ b/core/src/trezor/messages/TxAckPrevOutput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TxAckPrevOutputWrapper import TxAckPrevOutputWrapper diff --git a/core/src/trezor/messages/TxAckPrevOutputWrapper.py b/core/src/trezor/messages/TxAckPrevOutputWrapper.py index 22faf67e0..1846c5163 100644 --- a/core/src/trezor/messages/TxAckPrevOutputWrapper.py +++ b/core/src/trezor/messages/TxAckPrevOutputWrapper.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .PrevOutput import PrevOutput diff --git a/core/src/trezor/messages/TxInput.py b/core/src/trezor/messages/TxInput.py index b8a264633..671b81fa3 100644 --- a/core/src/trezor/messages/TxInput.py +++ b/core/src/trezor/messages/TxInput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/core/src/trezor/messages/TxInputType.py b/core/src/trezor/messages/TxInputType.py index 277e32bd5..b68014d48 100644 --- a/core/src/trezor/messages/TxInputType.py +++ b/core/src/trezor/messages/TxInputType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/core/src/trezor/messages/TxOutput.py b/core/src/trezor/messages/TxOutput.py index d9af0f1dd..f177028fe 100644 --- a/core/src/trezor/messages/TxOutput.py +++ b/core/src/trezor/messages/TxOutput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/core/src/trezor/messages/TxOutputBinType.py b/core/src/trezor/messages/TxOutputBinType.py index 4cdafaafa..e37ee9f41 100644 --- a/core/src/trezor/messages/TxOutputBinType.py +++ b/core/src/trezor/messages/TxOutputBinType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TxOutputType.py b/core/src/trezor/messages/TxOutputType.py index 259d8c660..d6c2a9166 100644 --- a/core/src/trezor/messages/TxOutputType.py +++ b/core/src/trezor/messages/TxOutputType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/core/src/trezor/messages/TxRequest.py b/core/src/trezor/messages/TxRequest.py index c8078546b..029c36cc0 100644 --- a/core/src/trezor/messages/TxRequest.py +++ b/core/src/trezor/messages/TxRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .TxRequestDetailsType import TxRequestDetailsType diff --git a/core/src/trezor/messages/TxRequestDetailsType.py b/core/src/trezor/messages/TxRequestDetailsType.py index 403e9814c..61327ca59 100644 --- a/core/src/trezor/messages/TxRequestDetailsType.py +++ b/core/src/trezor/messages/TxRequestDetailsType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/TxRequestSerializedType.py b/core/src/trezor/messages/TxRequestSerializedType.py index 730fc3486..658edf9ac 100644 --- a/core/src/trezor/messages/TxRequestSerializedType.py +++ b/core/src/trezor/messages/TxRequestSerializedType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/VerifyMessage.py b/core/src/trezor/messages/VerifyMessage.py index a98288c28..a9ef7c281 100644 --- a/core/src/trezor/messages/VerifyMessage.py +++ b/core/src/trezor/messages/VerifyMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/WebAuthnAddResidentCredential.py b/core/src/trezor/messages/WebAuthnAddResidentCredential.py index a8b2ec2ee..139017457 100644 --- a/core/src/trezor/messages/WebAuthnAddResidentCredential.py +++ b/core/src/trezor/messages/WebAuthnAddResidentCredential.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/WebAuthnCredential.py b/core/src/trezor/messages/WebAuthnCredential.py index aff9ad8d1..5ca90bb98 100644 --- a/core/src/trezor/messages/WebAuthnCredential.py +++ b/core/src/trezor/messages/WebAuthnCredential.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/WebAuthnCredentials.py b/core/src/trezor/messages/WebAuthnCredentials.py index 29ed07a59..273d02ab9 100644 --- a/core/src/trezor/messages/WebAuthnCredentials.py +++ b/core/src/trezor/messages/WebAuthnCredentials.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p from .WebAuthnCredential import WebAuthnCredential diff --git a/core/src/trezor/messages/WebAuthnListResidentCredentials.py b/core/src/trezor/messages/WebAuthnListResidentCredentials.py index be307e961..768c39ba2 100644 --- a/core/src/trezor/messages/WebAuthnListResidentCredentials.py +++ b/core/src/trezor/messages/WebAuthnListResidentCredentials.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/WebAuthnRemoveResidentCredential.py b/core/src/trezor/messages/WebAuthnRemoveResidentCredential.py index 43df048cf..ac823eec8 100644 --- a/core/src/trezor/messages/WebAuthnRemoveResidentCredential.py +++ b/core/src/trezor/messages/WebAuthnRemoveResidentCredential.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/core/src/trezor/messages/WipeDevice.py b/core/src/trezor/messages/WipeDevice.py index 4683f210f..f5c52ed16 100644 --- a/core/src/trezor/messages/WipeDevice.py +++ b/core/src/trezor/messages/WipeDevice.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/Address.py b/python/src/trezorlib/messages/Address.py index f8c98468f..ca36d98f3 100644 --- a/python/src/trezorlib/messages/Address.py +++ b/python/src/trezorlib/messages/Address.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/AmountUnit.py b/python/src/trezorlib/messages/AmountUnit.py index e602f2dfe..bd1079273 100644 --- a/python/src/trezorlib/messages/AmountUnit.py +++ b/python/src/trezorlib/messages/AmountUnit.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/ApplyFlags.py b/python/src/trezorlib/messages/ApplyFlags.py index ce6b401b5..f20f62eb4 100644 --- a/python/src/trezorlib/messages/ApplyFlags.py +++ b/python/src/trezorlib/messages/ApplyFlags.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/ApplySettings.py b/python/src/trezorlib/messages/ApplySettings.py index cd02b9a64..8b3109599 100644 --- a/python/src/trezorlib/messages/ApplySettings.py +++ b/python/src/trezorlib/messages/ApplySettings.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/AuthorizeCoinJoin.py b/python/src/trezorlib/messages/AuthorizeCoinJoin.py index da621f8ff..e8283cdc4 100644 --- a/python/src/trezorlib/messages/AuthorizeCoinJoin.py +++ b/python/src/trezorlib/messages/AuthorizeCoinJoin.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/BackupDevice.py b/python/src/trezorlib/messages/BackupDevice.py index 20a47f934..889a3a4af 100644 --- a/python/src/trezorlib/messages/BackupDevice.py +++ b/python/src/trezorlib/messages/BackupDevice.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/BackupType.py b/python/src/trezorlib/messages/BackupType.py index d8ed8002f..870723b6e 100644 --- a/python/src/trezorlib/messages/BackupType.py +++ b/python/src/trezorlib/messages/BackupType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/BinanceAddress.py b/python/src/trezorlib/messages/BinanceAddress.py index 1853e68da..2d18ae36e 100644 --- a/python/src/trezorlib/messages/BinanceAddress.py +++ b/python/src/trezorlib/messages/BinanceAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/BinanceCancelMsg.py b/python/src/trezorlib/messages/BinanceCancelMsg.py index 4e4b127c6..c87380aaf 100644 --- a/python/src/trezorlib/messages/BinanceCancelMsg.py +++ b/python/src/trezorlib/messages/BinanceCancelMsg.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/BinanceCoin.py b/python/src/trezorlib/messages/BinanceCoin.py index 3f65d06cb..ee965d24f 100644 --- a/python/src/trezorlib/messages/BinanceCoin.py +++ b/python/src/trezorlib/messages/BinanceCoin.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/BinanceGetAddress.py b/python/src/trezorlib/messages/BinanceGetAddress.py index 699c5b589..58179445a 100644 --- a/python/src/trezorlib/messages/BinanceGetAddress.py +++ b/python/src/trezorlib/messages/BinanceGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/BinanceGetPublicKey.py b/python/src/trezorlib/messages/BinanceGetPublicKey.py index 9a569a8d0..918bc06bf 100644 --- a/python/src/trezorlib/messages/BinanceGetPublicKey.py +++ b/python/src/trezorlib/messages/BinanceGetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/BinanceInputOutput.py b/python/src/trezorlib/messages/BinanceInputOutput.py index 7b383efad..9656c9c84 100644 --- a/python/src/trezorlib/messages/BinanceInputOutput.py +++ b/python/src/trezorlib/messages/BinanceInputOutput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .BinanceCoin import BinanceCoin diff --git a/python/src/trezorlib/messages/BinanceOrderMsg.py b/python/src/trezorlib/messages/BinanceOrderMsg.py index 7a164b7ae..a182eee6b 100644 --- a/python/src/trezorlib/messages/BinanceOrderMsg.py +++ b/python/src/trezorlib/messages/BinanceOrderMsg.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/BinanceOrderSide.py b/python/src/trezorlib/messages/BinanceOrderSide.py index 91be3ccdc..6a4302cc2 100644 --- a/python/src/trezorlib/messages/BinanceOrderSide.py +++ b/python/src/trezorlib/messages/BinanceOrderSide.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/BinanceOrderType.py b/python/src/trezorlib/messages/BinanceOrderType.py index 81846bb56..5f9633fe9 100644 --- a/python/src/trezorlib/messages/BinanceOrderType.py +++ b/python/src/trezorlib/messages/BinanceOrderType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/BinancePublicKey.py b/python/src/trezorlib/messages/BinancePublicKey.py index bd031b83f..2bb4867c0 100644 --- a/python/src/trezorlib/messages/BinancePublicKey.py +++ b/python/src/trezorlib/messages/BinancePublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/BinanceSignTx.py b/python/src/trezorlib/messages/BinanceSignTx.py index 85c6569ad..d71a2c9f2 100644 --- a/python/src/trezorlib/messages/BinanceSignTx.py +++ b/python/src/trezorlib/messages/BinanceSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/BinanceSignedTx.py b/python/src/trezorlib/messages/BinanceSignedTx.py index 01c92c72c..19bc41daf 100644 --- a/python/src/trezorlib/messages/BinanceSignedTx.py +++ b/python/src/trezorlib/messages/BinanceSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/BinanceTimeInForce.py b/python/src/trezorlib/messages/BinanceTimeInForce.py index 340135fb2..339143f9c 100644 --- a/python/src/trezorlib/messages/BinanceTimeInForce.py +++ b/python/src/trezorlib/messages/BinanceTimeInForce.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/BinanceTransferMsg.py b/python/src/trezorlib/messages/BinanceTransferMsg.py index aa64adbab..ec02c93d6 100644 --- a/python/src/trezorlib/messages/BinanceTransferMsg.py +++ b/python/src/trezorlib/messages/BinanceTransferMsg.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .BinanceInputOutput import BinanceInputOutput diff --git a/python/src/trezorlib/messages/BinanceTxRequest.py b/python/src/trezorlib/messages/BinanceTxRequest.py index 012e0d9b8..8af6fc2fb 100644 --- a/python/src/trezorlib/messages/BinanceTxRequest.py +++ b/python/src/trezorlib/messages/BinanceTxRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/ButtonAck.py b/python/src/trezorlib/messages/ButtonAck.py index 886985224..62dcc9271 100644 --- a/python/src/trezorlib/messages/ButtonAck.py +++ b/python/src/trezorlib/messages/ButtonAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/ButtonRequest.py b/python/src/trezorlib/messages/ButtonRequest.py index 2247e6511..054dd5255 100644 --- a/python/src/trezorlib/messages/ButtonRequest.py +++ b/python/src/trezorlib/messages/ButtonRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/ButtonRequestType.py b/python/src/trezorlib/messages/ButtonRequestType.py index 535ec54fb..fff3b8e79 100644 --- a/python/src/trezorlib/messages/ButtonRequestType.py +++ b/python/src/trezorlib/messages/ButtonRequestType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/Cancel.py b/python/src/trezorlib/messages/Cancel.py index 2227769a1..c57e03009 100644 --- a/python/src/trezorlib/messages/Cancel.py +++ b/python/src/trezorlib/messages/Cancel.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CancelAuthorization.py b/python/src/trezorlib/messages/CancelAuthorization.py index ad60fa254..1d31ac985 100644 --- a/python/src/trezorlib/messages/CancelAuthorization.py +++ b/python/src/trezorlib/messages/CancelAuthorization.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/Capability.py b/python/src/trezorlib/messages/Capability.py index 8f83aafba..fb8ae9cd1 100644 --- a/python/src/trezorlib/messages/Capability.py +++ b/python/src/trezorlib/messages/Capability.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/CardanoAddress.py b/python/src/trezorlib/messages/CardanoAddress.py index 392a6fc87..875ce78c3 100644 --- a/python/src/trezorlib/messages/CardanoAddress.py +++ b/python/src/trezorlib/messages/CardanoAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CardanoAddressParametersType.py b/python/src/trezorlib/messages/CardanoAddressParametersType.py index 977aaa387..0238f5a29 100644 --- a/python/src/trezorlib/messages/CardanoAddressParametersType.py +++ b/python/src/trezorlib/messages/CardanoAddressParametersType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .CardanoBlockchainPointerType import CardanoBlockchainPointerType diff --git a/python/src/trezorlib/messages/CardanoAddressType.py b/python/src/trezorlib/messages/CardanoAddressType.py index ec7bb4397..a4f0a6997 100644 --- a/python/src/trezorlib/messages/CardanoAddressType.py +++ b/python/src/trezorlib/messages/CardanoAddressType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/CardanoAssetGroupType.py b/python/src/trezorlib/messages/CardanoAssetGroupType.py index 5038a8141..f1a773d7f 100644 --- a/python/src/trezorlib/messages/CardanoAssetGroupType.py +++ b/python/src/trezorlib/messages/CardanoAssetGroupType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .CardanoTokenType import CardanoTokenType diff --git a/python/src/trezorlib/messages/CardanoBlockchainPointerType.py b/python/src/trezorlib/messages/CardanoBlockchainPointerType.py index 5abef09e7..51fdde6de 100644 --- a/python/src/trezorlib/messages/CardanoBlockchainPointerType.py +++ b/python/src/trezorlib/messages/CardanoBlockchainPointerType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CardanoCatalystRegistrationParametersType.py b/python/src/trezorlib/messages/CardanoCatalystRegistrationParametersType.py index 6af79bfbb..57d112898 100644 --- a/python/src/trezorlib/messages/CardanoCatalystRegistrationParametersType.py +++ b/python/src/trezorlib/messages/CardanoCatalystRegistrationParametersType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .CardanoAddressParametersType import CardanoAddressParametersType diff --git a/python/src/trezorlib/messages/CardanoCertificateType.py b/python/src/trezorlib/messages/CardanoCertificateType.py index 4f7e4a82d..4004c570a 100644 --- a/python/src/trezorlib/messages/CardanoCertificateType.py +++ b/python/src/trezorlib/messages/CardanoCertificateType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/CardanoGetAddress.py b/python/src/trezorlib/messages/CardanoGetAddress.py index f604624a9..14560816d 100644 --- a/python/src/trezorlib/messages/CardanoGetAddress.py +++ b/python/src/trezorlib/messages/CardanoGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .CardanoAddressParametersType import CardanoAddressParametersType diff --git a/python/src/trezorlib/messages/CardanoGetPublicKey.py b/python/src/trezorlib/messages/CardanoGetPublicKey.py index 30ba6311f..cea83253d 100644 --- a/python/src/trezorlib/messages/CardanoGetPublicKey.py +++ b/python/src/trezorlib/messages/CardanoGetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CardanoPoolMetadataType.py b/python/src/trezorlib/messages/CardanoPoolMetadataType.py index 45032c27c..36f08a948 100644 --- a/python/src/trezorlib/messages/CardanoPoolMetadataType.py +++ b/python/src/trezorlib/messages/CardanoPoolMetadataType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CardanoPoolOwnerType.py b/python/src/trezorlib/messages/CardanoPoolOwnerType.py index 3b8f075cd..097ca04bc 100644 --- a/python/src/trezorlib/messages/CardanoPoolOwnerType.py +++ b/python/src/trezorlib/messages/CardanoPoolOwnerType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CardanoPoolParametersType.py b/python/src/trezorlib/messages/CardanoPoolParametersType.py index 593fb0ee8..8aa89eb1e 100644 --- a/python/src/trezorlib/messages/CardanoPoolParametersType.py +++ b/python/src/trezorlib/messages/CardanoPoolParametersType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .CardanoPoolMetadataType import CardanoPoolMetadataType diff --git a/python/src/trezorlib/messages/CardanoPoolRelayParametersType.py b/python/src/trezorlib/messages/CardanoPoolRelayParametersType.py index af131da04..e093a851c 100644 --- a/python/src/trezorlib/messages/CardanoPoolRelayParametersType.py +++ b/python/src/trezorlib/messages/CardanoPoolRelayParametersType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CardanoPoolRelayType.py b/python/src/trezorlib/messages/CardanoPoolRelayType.py index 680b29d43..fcc291117 100644 --- a/python/src/trezorlib/messages/CardanoPoolRelayType.py +++ b/python/src/trezorlib/messages/CardanoPoolRelayType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/CardanoPublicKey.py b/python/src/trezorlib/messages/CardanoPublicKey.py index 112e4cbcb..630bb60b6 100644 --- a/python/src/trezorlib/messages/CardanoPublicKey.py +++ b/python/src/trezorlib/messages/CardanoPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .HDNodeType import HDNodeType diff --git a/python/src/trezorlib/messages/CardanoSignTx.py b/python/src/trezorlib/messages/CardanoSignTx.py index d50e0010f..d122f6385 100644 --- a/python/src/trezorlib/messages/CardanoSignTx.py +++ b/python/src/trezorlib/messages/CardanoSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .CardanoTxAuxiliaryDataType import CardanoTxAuxiliaryDataType diff --git a/python/src/trezorlib/messages/CardanoSignedTx.py b/python/src/trezorlib/messages/CardanoSignedTx.py index e07ff5c23..d55fd7c1d 100644 --- a/python/src/trezorlib/messages/CardanoSignedTx.py +++ b/python/src/trezorlib/messages/CardanoSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CardanoSignedTxChunk.py b/python/src/trezorlib/messages/CardanoSignedTxChunk.py index 2560042f2..af3bc6083 100644 --- a/python/src/trezorlib/messages/CardanoSignedTxChunk.py +++ b/python/src/trezorlib/messages/CardanoSignedTxChunk.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CardanoSignedTxChunkAck.py b/python/src/trezorlib/messages/CardanoSignedTxChunkAck.py index 1ec48c492..27c6650cf 100644 --- a/python/src/trezorlib/messages/CardanoSignedTxChunkAck.py +++ b/python/src/trezorlib/messages/CardanoSignedTxChunkAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CardanoTokenType.py b/python/src/trezorlib/messages/CardanoTokenType.py index 560eebea1..e86680494 100644 --- a/python/src/trezorlib/messages/CardanoTokenType.py +++ b/python/src/trezorlib/messages/CardanoTokenType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CardanoTxAuxiliaryDataType.py b/python/src/trezorlib/messages/CardanoTxAuxiliaryDataType.py index ccc4c9280..b917d525f 100644 --- a/python/src/trezorlib/messages/CardanoTxAuxiliaryDataType.py +++ b/python/src/trezorlib/messages/CardanoTxAuxiliaryDataType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .CardanoCatalystRegistrationParametersType import CardanoCatalystRegistrationParametersType diff --git a/python/src/trezorlib/messages/CardanoTxCertificateType.py b/python/src/trezorlib/messages/CardanoTxCertificateType.py index be4b6baf4..932089a8e 100644 --- a/python/src/trezorlib/messages/CardanoTxCertificateType.py +++ b/python/src/trezorlib/messages/CardanoTxCertificateType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .CardanoPoolParametersType import CardanoPoolParametersType diff --git a/python/src/trezorlib/messages/CardanoTxInputType.py b/python/src/trezorlib/messages/CardanoTxInputType.py index 8bee9f06e..c3f7ece5c 100644 --- a/python/src/trezorlib/messages/CardanoTxInputType.py +++ b/python/src/trezorlib/messages/CardanoTxInputType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CardanoTxOutputType.py b/python/src/trezorlib/messages/CardanoTxOutputType.py index 091d3c5df..c99aebf1d 100644 --- a/python/src/trezorlib/messages/CardanoTxOutputType.py +++ b/python/src/trezorlib/messages/CardanoTxOutputType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .CardanoAddressParametersType import CardanoAddressParametersType diff --git a/python/src/trezorlib/messages/CardanoTxWithdrawalType.py b/python/src/trezorlib/messages/CardanoTxWithdrawalType.py index b695f16a5..60d59cade 100644 --- a/python/src/trezorlib/messages/CardanoTxWithdrawalType.py +++ b/python/src/trezorlib/messages/CardanoTxWithdrawalType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/ChangePin.py b/python/src/trezorlib/messages/ChangePin.py index 8db9d7172..affe3dad6 100644 --- a/python/src/trezorlib/messages/ChangePin.py +++ b/python/src/trezorlib/messages/ChangePin.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/ChangeWipeCode.py b/python/src/trezorlib/messages/ChangeWipeCode.py index 3c5968718..439e611c1 100644 --- a/python/src/trezorlib/messages/ChangeWipeCode.py +++ b/python/src/trezorlib/messages/ChangeWipeCode.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CipherKeyValue.py b/python/src/trezorlib/messages/CipherKeyValue.py index fbdb3aeb7..2a2dea505 100644 --- a/python/src/trezorlib/messages/CipherKeyValue.py +++ b/python/src/trezorlib/messages/CipherKeyValue.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CipheredKeyValue.py b/python/src/trezorlib/messages/CipheredKeyValue.py index 34d3eccd5..bf4232489 100644 --- a/python/src/trezorlib/messages/CipheredKeyValue.py +++ b/python/src/trezorlib/messages/CipheredKeyValue.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CosiCommit.py b/python/src/trezorlib/messages/CosiCommit.py index e4a878112..be7f4a54e 100644 --- a/python/src/trezorlib/messages/CosiCommit.py +++ b/python/src/trezorlib/messages/CosiCommit.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CosiCommitment.py b/python/src/trezorlib/messages/CosiCommitment.py index 44663f005..6bac897b6 100644 --- a/python/src/trezorlib/messages/CosiCommitment.py +++ b/python/src/trezorlib/messages/CosiCommitment.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CosiSign.py b/python/src/trezorlib/messages/CosiSign.py index bb59986c9..4adc65ab3 100644 --- a/python/src/trezorlib/messages/CosiSign.py +++ b/python/src/trezorlib/messages/CosiSign.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/CosiSignature.py b/python/src/trezorlib/messages/CosiSignature.py index bb6db6ed3..cd02ca444 100644 --- a/python/src/trezorlib/messages/CosiSignature.py +++ b/python/src/trezorlib/messages/CosiSignature.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkDecision.py b/python/src/trezorlib/messages/DebugLinkDecision.py index 4b723cdc1..faa128aea 100644 --- a/python/src/trezorlib/messages/DebugLinkDecision.py +++ b/python/src/trezorlib/messages/DebugLinkDecision.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkEraseSdCard.py b/python/src/trezorlib/messages/DebugLinkEraseSdCard.py index 8aec29c50..65c7a3f53 100644 --- a/python/src/trezorlib/messages/DebugLinkEraseSdCard.py +++ b/python/src/trezorlib/messages/DebugLinkEraseSdCard.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkFlashErase.py b/python/src/trezorlib/messages/DebugLinkFlashErase.py index 3990118d4..d748ebf66 100644 --- a/python/src/trezorlib/messages/DebugLinkFlashErase.py +++ b/python/src/trezorlib/messages/DebugLinkFlashErase.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkGetState.py b/python/src/trezorlib/messages/DebugLinkGetState.py index 369688403..e54a6325a 100644 --- a/python/src/trezorlib/messages/DebugLinkGetState.py +++ b/python/src/trezorlib/messages/DebugLinkGetState.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkLayout.py b/python/src/trezorlib/messages/DebugLinkLayout.py index 124c6326b..3905e3a1a 100644 --- a/python/src/trezorlib/messages/DebugLinkLayout.py +++ b/python/src/trezorlib/messages/DebugLinkLayout.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkLog.py b/python/src/trezorlib/messages/DebugLinkLog.py index 4c0dcc19c..2e6537eb1 100644 --- a/python/src/trezorlib/messages/DebugLinkLog.py +++ b/python/src/trezorlib/messages/DebugLinkLog.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkMemory.py b/python/src/trezorlib/messages/DebugLinkMemory.py index b75c77607..20072112c 100644 --- a/python/src/trezorlib/messages/DebugLinkMemory.py +++ b/python/src/trezorlib/messages/DebugLinkMemory.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkMemoryRead.py b/python/src/trezorlib/messages/DebugLinkMemoryRead.py index 9f7fa6702..3119e482b 100644 --- a/python/src/trezorlib/messages/DebugLinkMemoryRead.py +++ b/python/src/trezorlib/messages/DebugLinkMemoryRead.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkMemoryWrite.py b/python/src/trezorlib/messages/DebugLinkMemoryWrite.py index f4b5f5418..829d0f251 100644 --- a/python/src/trezorlib/messages/DebugLinkMemoryWrite.py +++ b/python/src/trezorlib/messages/DebugLinkMemoryWrite.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkRecordScreen.py b/python/src/trezorlib/messages/DebugLinkRecordScreen.py index 80b7401ab..7b963bbc2 100644 --- a/python/src/trezorlib/messages/DebugLinkRecordScreen.py +++ b/python/src/trezorlib/messages/DebugLinkRecordScreen.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkReseedRandom.py b/python/src/trezorlib/messages/DebugLinkReseedRandom.py index 8d3483dc1..1e09d360d 100644 --- a/python/src/trezorlib/messages/DebugLinkReseedRandom.py +++ b/python/src/trezorlib/messages/DebugLinkReseedRandom.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkState.py b/python/src/trezorlib/messages/DebugLinkState.py index 1cc8eab09..6a9be89ad 100644 --- a/python/src/trezorlib/messages/DebugLinkState.py +++ b/python/src/trezorlib/messages/DebugLinkState.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .HDNodeType import HDNodeType diff --git a/python/src/trezorlib/messages/DebugLinkStop.py b/python/src/trezorlib/messages/DebugLinkStop.py index f1995fa4b..be1e589c1 100644 --- a/python/src/trezorlib/messages/DebugLinkStop.py +++ b/python/src/trezorlib/messages/DebugLinkStop.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugLinkWatchLayout.py b/python/src/trezorlib/messages/DebugLinkWatchLayout.py index d5466d3fb..af6ee5f9f 100644 --- a/python/src/trezorlib/messages/DebugLinkWatchLayout.py +++ b/python/src/trezorlib/messages/DebugLinkWatchLayout.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugMoneroDiagAck.py b/python/src/trezorlib/messages/DebugMoneroDiagAck.py index 3b42b3aab..6cab7258b 100644 --- a/python/src/trezorlib/messages/DebugMoneroDiagAck.py +++ b/python/src/trezorlib/messages/DebugMoneroDiagAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugMoneroDiagRequest.py b/python/src/trezorlib/messages/DebugMoneroDiagRequest.py index ed2227306..3f3321436 100644 --- a/python/src/trezorlib/messages/DebugMoneroDiagRequest.py +++ b/python/src/trezorlib/messages/DebugMoneroDiagRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DebugSwipeDirection.py b/python/src/trezorlib/messages/DebugSwipeDirection.py index 9e6cbf292..9543f3218 100644 --- a/python/src/trezorlib/messages/DebugSwipeDirection.py +++ b/python/src/trezorlib/messages/DebugSwipeDirection.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/DecredStakingSpendType.py b/python/src/trezorlib/messages/DecredStakingSpendType.py index fa1d65be5..56ec22ec2 100644 --- a/python/src/trezorlib/messages/DecredStakingSpendType.py +++ b/python/src/trezorlib/messages/DecredStakingSpendType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/Deprecated_PassphraseStateAck.py b/python/src/trezorlib/messages/Deprecated_PassphraseStateAck.py index 85d93a535..591899028 100644 --- a/python/src/trezorlib/messages/Deprecated_PassphraseStateAck.py +++ b/python/src/trezorlib/messages/Deprecated_PassphraseStateAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/Deprecated_PassphraseStateRequest.py b/python/src/trezorlib/messages/Deprecated_PassphraseStateRequest.py index 114c4f1ab..e35bedba3 100644 --- a/python/src/trezorlib/messages/Deprecated_PassphraseStateRequest.py +++ b/python/src/trezorlib/messages/Deprecated_PassphraseStateRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/DoPreauthorized.py b/python/src/trezorlib/messages/DoPreauthorized.py index b9872d1f6..0df454ff6 100644 --- a/python/src/trezorlib/messages/DoPreauthorized.py +++ b/python/src/trezorlib/messages/DoPreauthorized.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/ECDHSessionKey.py b/python/src/trezorlib/messages/ECDHSessionKey.py index bbf807e3b..abb902fa2 100644 --- a/python/src/trezorlib/messages/ECDHSessionKey.py +++ b/python/src/trezorlib/messages/ECDHSessionKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EndSession.py b/python/src/trezorlib/messages/EndSession.py index 07c1b4e91..a49086914 100644 --- a/python/src/trezorlib/messages/EndSession.py +++ b/python/src/trezorlib/messages/EndSession.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/Entropy.py b/python/src/trezorlib/messages/Entropy.py index 837177694..9f021bc30 100644 --- a/python/src/trezorlib/messages/Entropy.py +++ b/python/src/trezorlib/messages/Entropy.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EntropyAck.py b/python/src/trezorlib/messages/EntropyAck.py index 0cc0cc0f3..2ad3c51b9 100644 --- a/python/src/trezorlib/messages/EntropyAck.py +++ b/python/src/trezorlib/messages/EntropyAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EntropyRequest.py b/python/src/trezorlib/messages/EntropyRequest.py index 1b6905e86..2c4590726 100644 --- a/python/src/trezorlib/messages/EntropyRequest.py +++ b/python/src/trezorlib/messages/EntropyRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosActionBuyRam.py b/python/src/trezorlib/messages/EosActionBuyRam.py index d41a2eb19..4cffa7522 100644 --- a/python/src/trezorlib/messages/EosActionBuyRam.py +++ b/python/src/trezorlib/messages/EosActionBuyRam.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .EosAsset import EosAsset diff --git a/python/src/trezorlib/messages/EosActionBuyRamBytes.py b/python/src/trezorlib/messages/EosActionBuyRamBytes.py index 2b2dd3c4b..30dcd828e 100644 --- a/python/src/trezorlib/messages/EosActionBuyRamBytes.py +++ b/python/src/trezorlib/messages/EosActionBuyRamBytes.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosActionCommon.py b/python/src/trezorlib/messages/EosActionCommon.py index 2f264f41d..865ac5c98 100644 --- a/python/src/trezorlib/messages/EosActionCommon.py +++ b/python/src/trezorlib/messages/EosActionCommon.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .EosPermissionLevel import EosPermissionLevel diff --git a/python/src/trezorlib/messages/EosActionDelegate.py b/python/src/trezorlib/messages/EosActionDelegate.py index 95b5e75ed..2c9793887 100644 --- a/python/src/trezorlib/messages/EosActionDelegate.py +++ b/python/src/trezorlib/messages/EosActionDelegate.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .EosAsset import EosAsset diff --git a/python/src/trezorlib/messages/EosActionDeleteAuth.py b/python/src/trezorlib/messages/EosActionDeleteAuth.py index d17d37e3b..4c849ada7 100644 --- a/python/src/trezorlib/messages/EosActionDeleteAuth.py +++ b/python/src/trezorlib/messages/EosActionDeleteAuth.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosActionLinkAuth.py b/python/src/trezorlib/messages/EosActionLinkAuth.py index 961dc928d..df353e240 100644 --- a/python/src/trezorlib/messages/EosActionLinkAuth.py +++ b/python/src/trezorlib/messages/EosActionLinkAuth.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosActionNewAccount.py b/python/src/trezorlib/messages/EosActionNewAccount.py index 54f058796..218a02c28 100644 --- a/python/src/trezorlib/messages/EosActionNewAccount.py +++ b/python/src/trezorlib/messages/EosActionNewAccount.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .EosAuthorization import EosAuthorization diff --git a/python/src/trezorlib/messages/EosActionRefund.py b/python/src/trezorlib/messages/EosActionRefund.py index d519a5b8c..e6e877dd0 100644 --- a/python/src/trezorlib/messages/EosActionRefund.py +++ b/python/src/trezorlib/messages/EosActionRefund.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosActionSellRam.py b/python/src/trezorlib/messages/EosActionSellRam.py index 34610b2a1..ea8eb33a4 100644 --- a/python/src/trezorlib/messages/EosActionSellRam.py +++ b/python/src/trezorlib/messages/EosActionSellRam.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosActionTransfer.py b/python/src/trezorlib/messages/EosActionTransfer.py index 3987f681b..f8d555007 100644 --- a/python/src/trezorlib/messages/EosActionTransfer.py +++ b/python/src/trezorlib/messages/EosActionTransfer.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .EosAsset import EosAsset diff --git a/python/src/trezorlib/messages/EosActionUndelegate.py b/python/src/trezorlib/messages/EosActionUndelegate.py index c6fd25d93..4dd51d212 100644 --- a/python/src/trezorlib/messages/EosActionUndelegate.py +++ b/python/src/trezorlib/messages/EosActionUndelegate.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .EosAsset import EosAsset diff --git a/python/src/trezorlib/messages/EosActionUnknown.py b/python/src/trezorlib/messages/EosActionUnknown.py index 9d77d3177..23ee32244 100644 --- a/python/src/trezorlib/messages/EosActionUnknown.py +++ b/python/src/trezorlib/messages/EosActionUnknown.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosActionUnlinkAuth.py b/python/src/trezorlib/messages/EosActionUnlinkAuth.py index 7c3a14c24..1719ba32d 100644 --- a/python/src/trezorlib/messages/EosActionUnlinkAuth.py +++ b/python/src/trezorlib/messages/EosActionUnlinkAuth.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosActionUpdateAuth.py b/python/src/trezorlib/messages/EosActionUpdateAuth.py index 126f93d81..01482dbec 100644 --- a/python/src/trezorlib/messages/EosActionUpdateAuth.py +++ b/python/src/trezorlib/messages/EosActionUpdateAuth.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .EosAuthorization import EosAuthorization diff --git a/python/src/trezorlib/messages/EosActionVoteProducer.py b/python/src/trezorlib/messages/EosActionVoteProducer.py index 143d0ac55..8d9fca472 100644 --- a/python/src/trezorlib/messages/EosActionVoteProducer.py +++ b/python/src/trezorlib/messages/EosActionVoteProducer.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosAsset.py b/python/src/trezorlib/messages/EosAsset.py index 44354f332..c475bb3e4 100644 --- a/python/src/trezorlib/messages/EosAsset.py +++ b/python/src/trezorlib/messages/EosAsset.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosAuthorization.py b/python/src/trezorlib/messages/EosAuthorization.py index 74442d254..1b73c036b 100644 --- a/python/src/trezorlib/messages/EosAuthorization.py +++ b/python/src/trezorlib/messages/EosAuthorization.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .EosAuthorizationAccount import EosAuthorizationAccount diff --git a/python/src/trezorlib/messages/EosAuthorizationAccount.py b/python/src/trezorlib/messages/EosAuthorizationAccount.py index d79ab2ff3..6f0abcd31 100644 --- a/python/src/trezorlib/messages/EosAuthorizationAccount.py +++ b/python/src/trezorlib/messages/EosAuthorizationAccount.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .EosPermissionLevel import EosPermissionLevel diff --git a/python/src/trezorlib/messages/EosAuthorizationKey.py b/python/src/trezorlib/messages/EosAuthorizationKey.py index 396d61fed..6f3973e2e 100644 --- a/python/src/trezorlib/messages/EosAuthorizationKey.py +++ b/python/src/trezorlib/messages/EosAuthorizationKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosAuthorizationWait.py b/python/src/trezorlib/messages/EosAuthorizationWait.py index 8bcc29280..255a147d1 100644 --- a/python/src/trezorlib/messages/EosAuthorizationWait.py +++ b/python/src/trezorlib/messages/EosAuthorizationWait.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosGetPublicKey.py b/python/src/trezorlib/messages/EosGetPublicKey.py index cd3bdd153..99a0b2c98 100644 --- a/python/src/trezorlib/messages/EosGetPublicKey.py +++ b/python/src/trezorlib/messages/EosGetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosPermissionLevel.py b/python/src/trezorlib/messages/EosPermissionLevel.py index 71717af81..51a0c2f66 100644 --- a/python/src/trezorlib/messages/EosPermissionLevel.py +++ b/python/src/trezorlib/messages/EosPermissionLevel.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosPublicKey.py b/python/src/trezorlib/messages/EosPublicKey.py index bd93f22a7..38d49fe13 100644 --- a/python/src/trezorlib/messages/EosPublicKey.py +++ b/python/src/trezorlib/messages/EosPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosSignTx.py b/python/src/trezorlib/messages/EosSignTx.py index 5b064ca70..705774fbb 100644 --- a/python/src/trezorlib/messages/EosSignTx.py +++ b/python/src/trezorlib/messages/EosSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .EosTxHeader import EosTxHeader diff --git a/python/src/trezorlib/messages/EosSignedTx.py b/python/src/trezorlib/messages/EosSignedTx.py index 3dc78c4d9..2c84eba72 100644 --- a/python/src/trezorlib/messages/EosSignedTx.py +++ b/python/src/trezorlib/messages/EosSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosTxActionAck.py b/python/src/trezorlib/messages/EosTxActionAck.py index b023c70bd..845967e31 100644 --- a/python/src/trezorlib/messages/EosTxActionAck.py +++ b/python/src/trezorlib/messages/EosTxActionAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .EosActionBuyRam import EosActionBuyRam diff --git a/python/src/trezorlib/messages/EosTxActionRequest.py b/python/src/trezorlib/messages/EosTxActionRequest.py index ad038d2b3..331cc88d9 100644 --- a/python/src/trezorlib/messages/EosTxActionRequest.py +++ b/python/src/trezorlib/messages/EosTxActionRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EosTxHeader.py b/python/src/trezorlib/messages/EosTxHeader.py index 8378353e5..70a3cca71 100644 --- a/python/src/trezorlib/messages/EosTxHeader.py +++ b/python/src/trezorlib/messages/EosTxHeader.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EthereumAddress.py b/python/src/trezorlib/messages/EthereumAddress.py index 825c91193..22487bcd2 100644 --- a/python/src/trezorlib/messages/EthereumAddress.py +++ b/python/src/trezorlib/messages/EthereumAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EthereumGetAddress.py b/python/src/trezorlib/messages/EthereumGetAddress.py index e26f2b42a..45ac7b6d4 100644 --- a/python/src/trezorlib/messages/EthereumGetAddress.py +++ b/python/src/trezorlib/messages/EthereumGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EthereumGetPublicKey.py b/python/src/trezorlib/messages/EthereumGetPublicKey.py index 362298774..05d4b2fc1 100644 --- a/python/src/trezorlib/messages/EthereumGetPublicKey.py +++ b/python/src/trezorlib/messages/EthereumGetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EthereumMessageSignature.py b/python/src/trezorlib/messages/EthereumMessageSignature.py index 418f6daef..a4f0db3dd 100644 --- a/python/src/trezorlib/messages/EthereumMessageSignature.py +++ b/python/src/trezorlib/messages/EthereumMessageSignature.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EthereumPublicKey.py b/python/src/trezorlib/messages/EthereumPublicKey.py index 30ed25e37..ffc312079 100644 --- a/python/src/trezorlib/messages/EthereumPublicKey.py +++ b/python/src/trezorlib/messages/EthereumPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .HDNodeType import HDNodeType diff --git a/python/src/trezorlib/messages/EthereumSignMessage.py b/python/src/trezorlib/messages/EthereumSignMessage.py index 8ac1dd95e..3087dfb8d 100644 --- a/python/src/trezorlib/messages/EthereumSignMessage.py +++ b/python/src/trezorlib/messages/EthereumSignMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EthereumSignTx.py b/python/src/trezorlib/messages/EthereumSignTx.py index 41f139776..78824a8ca 100644 --- a/python/src/trezorlib/messages/EthereumSignTx.py +++ b/python/src/trezorlib/messages/EthereumSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EthereumTxAck.py b/python/src/trezorlib/messages/EthereumTxAck.py index 5424df411..f98780beb 100644 --- a/python/src/trezorlib/messages/EthereumTxAck.py +++ b/python/src/trezorlib/messages/EthereumTxAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EthereumTxRequest.py b/python/src/trezorlib/messages/EthereumTxRequest.py index 0f4922d09..eda85d7dc 100644 --- a/python/src/trezorlib/messages/EthereumTxRequest.py +++ b/python/src/trezorlib/messages/EthereumTxRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/EthereumVerifyMessage.py b/python/src/trezorlib/messages/EthereumVerifyMessage.py index 3ac8fdbe9..edf8ec2a1 100644 --- a/python/src/trezorlib/messages/EthereumVerifyMessage.py +++ b/python/src/trezorlib/messages/EthereumVerifyMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/Failure.py b/python/src/trezorlib/messages/Failure.py index 3ebd7c0de..e4dc6b426 100644 --- a/python/src/trezorlib/messages/Failure.py +++ b/python/src/trezorlib/messages/Failure.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/FailureType.py b/python/src/trezorlib/messages/FailureType.py index 49dbf8b6f..ed6bda304 100644 --- a/python/src/trezorlib/messages/FailureType.py +++ b/python/src/trezorlib/messages/FailureType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/Features.py b/python/src/trezorlib/messages/Features.py index 9d706fffc..309699f95 100644 --- a/python/src/trezorlib/messages/Features.py +++ b/python/src/trezorlib/messages/Features.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/FirmwareErase.py b/python/src/trezorlib/messages/FirmwareErase.py index 21a577833..e258376ea 100644 --- a/python/src/trezorlib/messages/FirmwareErase.py +++ b/python/src/trezorlib/messages/FirmwareErase.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/FirmwareRequest.py b/python/src/trezorlib/messages/FirmwareRequest.py index 65a52d5c9..6f1010b9d 100644 --- a/python/src/trezorlib/messages/FirmwareRequest.py +++ b/python/src/trezorlib/messages/FirmwareRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/FirmwareUpload.py b/python/src/trezorlib/messages/FirmwareUpload.py index b8ea32bb7..792fcd67e 100644 --- a/python/src/trezorlib/messages/FirmwareUpload.py +++ b/python/src/trezorlib/messages/FirmwareUpload.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/GetAddress.py b/python/src/trezorlib/messages/GetAddress.py index 615346494..b73f37a73 100644 --- a/python/src/trezorlib/messages/GetAddress.py +++ b/python/src/trezorlib/messages/GetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/python/src/trezorlib/messages/GetECDHSessionKey.py b/python/src/trezorlib/messages/GetECDHSessionKey.py index 02cbe7595..8873a7053 100644 --- a/python/src/trezorlib/messages/GetECDHSessionKey.py +++ b/python/src/trezorlib/messages/GetECDHSessionKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .IdentityType import IdentityType diff --git a/python/src/trezorlib/messages/GetEntropy.py b/python/src/trezorlib/messages/GetEntropy.py index 2e89f6fe5..2466c7141 100644 --- a/python/src/trezorlib/messages/GetEntropy.py +++ b/python/src/trezorlib/messages/GetEntropy.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/GetFeatures.py b/python/src/trezorlib/messages/GetFeatures.py index d59dddb2e..96f2e4f2d 100644 --- a/python/src/trezorlib/messages/GetFeatures.py +++ b/python/src/trezorlib/messages/GetFeatures.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/GetNextU2FCounter.py b/python/src/trezorlib/messages/GetNextU2FCounter.py index 5d2326472..37a37dc90 100644 --- a/python/src/trezorlib/messages/GetNextU2FCounter.py +++ b/python/src/trezorlib/messages/GetNextU2FCounter.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/GetOwnershipId.py b/python/src/trezorlib/messages/GetOwnershipId.py index 5e0756675..eed4cde1b 100644 --- a/python/src/trezorlib/messages/GetOwnershipId.py +++ b/python/src/trezorlib/messages/GetOwnershipId.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/python/src/trezorlib/messages/GetOwnershipProof.py b/python/src/trezorlib/messages/GetOwnershipProof.py index 1347ce9d0..3edce84d2 100644 --- a/python/src/trezorlib/messages/GetOwnershipProof.py +++ b/python/src/trezorlib/messages/GetOwnershipProof.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/python/src/trezorlib/messages/GetPublicKey.py b/python/src/trezorlib/messages/GetPublicKey.py index a4d70101e..2fc5c2db9 100644 --- a/python/src/trezorlib/messages/GetPublicKey.py +++ b/python/src/trezorlib/messages/GetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/HDNodePathType.py b/python/src/trezorlib/messages/HDNodePathType.py index b4a71c6c5..7c4ef1a83 100644 --- a/python/src/trezorlib/messages/HDNodePathType.py +++ b/python/src/trezorlib/messages/HDNodePathType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .HDNodeType import HDNodeType diff --git a/python/src/trezorlib/messages/HDNodeType.py b/python/src/trezorlib/messages/HDNodeType.py index 2489adb6f..91e311d93 100644 --- a/python/src/trezorlib/messages/HDNodeType.py +++ b/python/src/trezorlib/messages/HDNodeType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/IdentityType.py b/python/src/trezorlib/messages/IdentityType.py index 6e1e66ec3..a24e1202c 100644 --- a/python/src/trezorlib/messages/IdentityType.py +++ b/python/src/trezorlib/messages/IdentityType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/Initialize.py b/python/src/trezorlib/messages/Initialize.py index d36116b6a..a975e2c65 100644 --- a/python/src/trezorlib/messages/Initialize.py +++ b/python/src/trezorlib/messages/Initialize.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/InputScriptType.py b/python/src/trezorlib/messages/InputScriptType.py index 26243b1ca..68cdda255 100644 --- a/python/src/trezorlib/messages/InputScriptType.py +++ b/python/src/trezorlib/messages/InputScriptType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/LiskAddress.py b/python/src/trezorlib/messages/LiskAddress.py index 0342287e7..09c024401 100644 --- a/python/src/trezorlib/messages/LiskAddress.py +++ b/python/src/trezorlib/messages/LiskAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/LiskDelegateType.py b/python/src/trezorlib/messages/LiskDelegateType.py index 896c22eda..da0a4705a 100644 --- a/python/src/trezorlib/messages/LiskDelegateType.py +++ b/python/src/trezorlib/messages/LiskDelegateType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/LiskGetAddress.py b/python/src/trezorlib/messages/LiskGetAddress.py index fc1ae877e..ca95bb798 100644 --- a/python/src/trezorlib/messages/LiskGetAddress.py +++ b/python/src/trezorlib/messages/LiskGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/LiskGetPublicKey.py b/python/src/trezorlib/messages/LiskGetPublicKey.py index 3fedca494..01be6c751 100644 --- a/python/src/trezorlib/messages/LiskGetPublicKey.py +++ b/python/src/trezorlib/messages/LiskGetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/LiskMessageSignature.py b/python/src/trezorlib/messages/LiskMessageSignature.py index 7eb828323..cd908a153 100644 --- a/python/src/trezorlib/messages/LiskMessageSignature.py +++ b/python/src/trezorlib/messages/LiskMessageSignature.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/LiskMultisignatureType.py b/python/src/trezorlib/messages/LiskMultisignatureType.py index 48061f58b..dc92b9639 100644 --- a/python/src/trezorlib/messages/LiskMultisignatureType.py +++ b/python/src/trezorlib/messages/LiskMultisignatureType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/LiskPublicKey.py b/python/src/trezorlib/messages/LiskPublicKey.py index 2302ec9ef..417f27e23 100644 --- a/python/src/trezorlib/messages/LiskPublicKey.py +++ b/python/src/trezorlib/messages/LiskPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/LiskSignMessage.py b/python/src/trezorlib/messages/LiskSignMessage.py index 11ed32e40..a59019af8 100644 --- a/python/src/trezorlib/messages/LiskSignMessage.py +++ b/python/src/trezorlib/messages/LiskSignMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/LiskSignTx.py b/python/src/trezorlib/messages/LiskSignTx.py index 2e874e172..9db6cbe29 100644 --- a/python/src/trezorlib/messages/LiskSignTx.py +++ b/python/src/trezorlib/messages/LiskSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .LiskTransactionCommon import LiskTransactionCommon diff --git a/python/src/trezorlib/messages/LiskSignatureType.py b/python/src/trezorlib/messages/LiskSignatureType.py index 56eaff915..36d8e616f 100644 --- a/python/src/trezorlib/messages/LiskSignatureType.py +++ b/python/src/trezorlib/messages/LiskSignatureType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/LiskSignedTx.py b/python/src/trezorlib/messages/LiskSignedTx.py index 49e3f23ec..ce80ad906 100644 --- a/python/src/trezorlib/messages/LiskSignedTx.py +++ b/python/src/trezorlib/messages/LiskSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/LiskTransactionAsset.py b/python/src/trezorlib/messages/LiskTransactionAsset.py index dc1e4c95a..9c934630e 100644 --- a/python/src/trezorlib/messages/LiskTransactionAsset.py +++ b/python/src/trezorlib/messages/LiskTransactionAsset.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .LiskDelegateType import LiskDelegateType diff --git a/python/src/trezorlib/messages/LiskTransactionCommon.py b/python/src/trezorlib/messages/LiskTransactionCommon.py index 71a2f2ea0..85b234a68 100644 --- a/python/src/trezorlib/messages/LiskTransactionCommon.py +++ b/python/src/trezorlib/messages/LiskTransactionCommon.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .LiskTransactionAsset import LiskTransactionAsset diff --git a/python/src/trezorlib/messages/LiskTransactionType.py b/python/src/trezorlib/messages/LiskTransactionType.py index 4056d0af0..57613e11f 100644 --- a/python/src/trezorlib/messages/LiskTransactionType.py +++ b/python/src/trezorlib/messages/LiskTransactionType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/LiskVerifyMessage.py b/python/src/trezorlib/messages/LiskVerifyMessage.py index 760551516..df9da9a8d 100644 --- a/python/src/trezorlib/messages/LiskVerifyMessage.py +++ b/python/src/trezorlib/messages/LiskVerifyMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/LoadDevice.py b/python/src/trezorlib/messages/LoadDevice.py index 58c5e9b16..27c673d90 100644 --- a/python/src/trezorlib/messages/LoadDevice.py +++ b/python/src/trezorlib/messages/LoadDevice.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/LockDevice.py b/python/src/trezorlib/messages/LockDevice.py index affebb910..c19fe93a5 100644 --- a/python/src/trezorlib/messages/LockDevice.py +++ b/python/src/trezorlib/messages/LockDevice.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MessageSignature.py b/python/src/trezorlib/messages/MessageSignature.py index e07bc2fc5..2b69518e4 100644 --- a/python/src/trezorlib/messages/MessageSignature.py +++ b/python/src/trezorlib/messages/MessageSignature.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MessageType.py b/python/src/trezorlib/messages/MessageType.py index 689ca500b..0f8194e05 100644 --- a/python/src/trezorlib/messages/MessageType.py +++ b/python/src/trezorlib/messages/MessageType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/MoneroAccountPublicAddress.py b/python/src/trezorlib/messages/MoneroAccountPublicAddress.py index a041110ab..a25c2724e 100644 --- a/python/src/trezorlib/messages/MoneroAccountPublicAddress.py +++ b/python/src/trezorlib/messages/MoneroAccountPublicAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroAddress.py b/python/src/trezorlib/messages/MoneroAddress.py index 9a5802266..11cda12a0 100644 --- a/python/src/trezorlib/messages/MoneroAddress.py +++ b/python/src/trezorlib/messages/MoneroAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroExportedKeyImage.py b/python/src/trezorlib/messages/MoneroExportedKeyImage.py index 9c916c474..16926b948 100644 --- a/python/src/trezorlib/messages/MoneroExportedKeyImage.py +++ b/python/src/trezorlib/messages/MoneroExportedKeyImage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroGetAddress.py b/python/src/trezorlib/messages/MoneroGetAddress.py index 924fb1bfd..1117f1983 100644 --- a/python/src/trezorlib/messages/MoneroGetAddress.py +++ b/python/src/trezorlib/messages/MoneroGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroGetTxKeyAck.py b/python/src/trezorlib/messages/MoneroGetTxKeyAck.py index 3adcaa0cd..a49fde4ac 100644 --- a/python/src/trezorlib/messages/MoneroGetTxKeyAck.py +++ b/python/src/trezorlib/messages/MoneroGetTxKeyAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroGetTxKeyRequest.py b/python/src/trezorlib/messages/MoneroGetTxKeyRequest.py index 961a205a9..4008946fc 100644 --- a/python/src/trezorlib/messages/MoneroGetTxKeyRequest.py +++ b/python/src/trezorlib/messages/MoneroGetTxKeyRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroGetWatchKey.py b/python/src/trezorlib/messages/MoneroGetWatchKey.py index e217ba6cc..f3a24d680 100644 --- a/python/src/trezorlib/messages/MoneroGetWatchKey.py +++ b/python/src/trezorlib/messages/MoneroGetWatchKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroKeyImageExportInitAck.py b/python/src/trezorlib/messages/MoneroKeyImageExportInitAck.py index 7a61a22a2..0ab2d1194 100644 --- a/python/src/trezorlib/messages/MoneroKeyImageExportInitAck.py +++ b/python/src/trezorlib/messages/MoneroKeyImageExportInitAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroKeyImageExportInitRequest.py b/python/src/trezorlib/messages/MoneroKeyImageExportInitRequest.py index 4231b3170..d52986223 100644 --- a/python/src/trezorlib/messages/MoneroKeyImageExportInitRequest.py +++ b/python/src/trezorlib/messages/MoneroKeyImageExportInitRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroSubAddressIndicesList import MoneroSubAddressIndicesList diff --git a/python/src/trezorlib/messages/MoneroKeyImageSyncFinalAck.py b/python/src/trezorlib/messages/MoneroKeyImageSyncFinalAck.py index 16e602d92..7f8d1154b 100644 --- a/python/src/trezorlib/messages/MoneroKeyImageSyncFinalAck.py +++ b/python/src/trezorlib/messages/MoneroKeyImageSyncFinalAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroKeyImageSyncFinalRequest.py b/python/src/trezorlib/messages/MoneroKeyImageSyncFinalRequest.py index 90443fa8c..2fbb7304b 100644 --- a/python/src/trezorlib/messages/MoneroKeyImageSyncFinalRequest.py +++ b/python/src/trezorlib/messages/MoneroKeyImageSyncFinalRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroKeyImageSyncStepAck.py b/python/src/trezorlib/messages/MoneroKeyImageSyncStepAck.py index 040c835ca..7283c84bc 100644 --- a/python/src/trezorlib/messages/MoneroKeyImageSyncStepAck.py +++ b/python/src/trezorlib/messages/MoneroKeyImageSyncStepAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroExportedKeyImage import MoneroExportedKeyImage diff --git a/python/src/trezorlib/messages/MoneroKeyImageSyncStepRequest.py b/python/src/trezorlib/messages/MoneroKeyImageSyncStepRequest.py index 31c277f58..11418af20 100644 --- a/python/src/trezorlib/messages/MoneroKeyImageSyncStepRequest.py +++ b/python/src/trezorlib/messages/MoneroKeyImageSyncStepRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroTransferDetails import MoneroTransferDetails diff --git a/python/src/trezorlib/messages/MoneroLiveRefreshFinalAck.py b/python/src/trezorlib/messages/MoneroLiveRefreshFinalAck.py index 8c5fdce68..7ef225a76 100644 --- a/python/src/trezorlib/messages/MoneroLiveRefreshFinalAck.py +++ b/python/src/trezorlib/messages/MoneroLiveRefreshFinalAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroLiveRefreshFinalRequest.py b/python/src/trezorlib/messages/MoneroLiveRefreshFinalRequest.py index 6140b4913..b3284489b 100644 --- a/python/src/trezorlib/messages/MoneroLiveRefreshFinalRequest.py +++ b/python/src/trezorlib/messages/MoneroLiveRefreshFinalRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroLiveRefreshStartAck.py b/python/src/trezorlib/messages/MoneroLiveRefreshStartAck.py index 4e0d2f47d..626b069ef 100644 --- a/python/src/trezorlib/messages/MoneroLiveRefreshStartAck.py +++ b/python/src/trezorlib/messages/MoneroLiveRefreshStartAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroLiveRefreshStartRequest.py b/python/src/trezorlib/messages/MoneroLiveRefreshStartRequest.py index 63980a0f9..ccb48c8ab 100644 --- a/python/src/trezorlib/messages/MoneroLiveRefreshStartRequest.py +++ b/python/src/trezorlib/messages/MoneroLiveRefreshStartRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroLiveRefreshStepAck.py b/python/src/trezorlib/messages/MoneroLiveRefreshStepAck.py index c007d3bd1..c858cbfac 100644 --- a/python/src/trezorlib/messages/MoneroLiveRefreshStepAck.py +++ b/python/src/trezorlib/messages/MoneroLiveRefreshStepAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroLiveRefreshStepRequest.py b/python/src/trezorlib/messages/MoneroLiveRefreshStepRequest.py index dc9e75a13..01b57cece 100644 --- a/python/src/trezorlib/messages/MoneroLiveRefreshStepRequest.py +++ b/python/src/trezorlib/messages/MoneroLiveRefreshStepRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroMultisigKLRki.py b/python/src/trezorlib/messages/MoneroMultisigKLRki.py index 54a65bafd..9677bdaf5 100644 --- a/python/src/trezorlib/messages/MoneroMultisigKLRki.py +++ b/python/src/trezorlib/messages/MoneroMultisigKLRki.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroOutputEntry.py b/python/src/trezorlib/messages/MoneroOutputEntry.py index fa13a4ce1..48bfaa054 100644 --- a/python/src/trezorlib/messages/MoneroOutputEntry.py +++ b/python/src/trezorlib/messages/MoneroOutputEntry.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroRctKeyPublic import MoneroRctKeyPublic diff --git a/python/src/trezorlib/messages/MoneroRctKeyPublic.py b/python/src/trezorlib/messages/MoneroRctKeyPublic.py index d5cbde8ff..89429ae20 100644 --- a/python/src/trezorlib/messages/MoneroRctKeyPublic.py +++ b/python/src/trezorlib/messages/MoneroRctKeyPublic.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroRingCtSig.py b/python/src/trezorlib/messages/MoneroRingCtSig.py index 500f5c661..8b60e2be7 100644 --- a/python/src/trezorlib/messages/MoneroRingCtSig.py +++ b/python/src/trezorlib/messages/MoneroRingCtSig.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroSubAddressIndicesList.py b/python/src/trezorlib/messages/MoneroSubAddressIndicesList.py index b33b9fe86..30a798923 100644 --- a/python/src/trezorlib/messages/MoneroSubAddressIndicesList.py +++ b/python/src/trezorlib/messages/MoneroSubAddressIndicesList.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroTransactionAllInputsSetAck.py b/python/src/trezorlib/messages/MoneroTransactionAllInputsSetAck.py index 7c44f4257..54e486419 100644 --- a/python/src/trezorlib/messages/MoneroTransactionAllInputsSetAck.py +++ b/python/src/trezorlib/messages/MoneroTransactionAllInputsSetAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroTransactionRsigData import MoneroTransactionRsigData diff --git a/python/src/trezorlib/messages/MoneroTransactionAllInputsSetRequest.py b/python/src/trezorlib/messages/MoneroTransactionAllInputsSetRequest.py index bab24f8da..447172e02 100644 --- a/python/src/trezorlib/messages/MoneroTransactionAllInputsSetRequest.py +++ b/python/src/trezorlib/messages/MoneroTransactionAllInputsSetRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroTransactionAllOutSetAck.py b/python/src/trezorlib/messages/MoneroTransactionAllOutSetAck.py index 59df9eb1c..59f39ce7a 100644 --- a/python/src/trezorlib/messages/MoneroTransactionAllOutSetAck.py +++ b/python/src/trezorlib/messages/MoneroTransactionAllOutSetAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroRingCtSig import MoneroRingCtSig diff --git a/python/src/trezorlib/messages/MoneroTransactionAllOutSetRequest.py b/python/src/trezorlib/messages/MoneroTransactionAllOutSetRequest.py index f03052042..eff59f498 100644 --- a/python/src/trezorlib/messages/MoneroTransactionAllOutSetRequest.py +++ b/python/src/trezorlib/messages/MoneroTransactionAllOutSetRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroTransactionRsigData import MoneroTransactionRsigData diff --git a/python/src/trezorlib/messages/MoneroTransactionData.py b/python/src/trezorlib/messages/MoneroTransactionData.py index 01c7f3912..81292b065 100644 --- a/python/src/trezorlib/messages/MoneroTransactionData.py +++ b/python/src/trezorlib/messages/MoneroTransactionData.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroTransactionDestinationEntry import MoneroTransactionDestinationEntry diff --git a/python/src/trezorlib/messages/MoneroTransactionDestinationEntry.py b/python/src/trezorlib/messages/MoneroTransactionDestinationEntry.py index d4ce45a02..54032c1ec 100644 --- a/python/src/trezorlib/messages/MoneroTransactionDestinationEntry.py +++ b/python/src/trezorlib/messages/MoneroTransactionDestinationEntry.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroAccountPublicAddress import MoneroAccountPublicAddress diff --git a/python/src/trezorlib/messages/MoneroTransactionFinalAck.py b/python/src/trezorlib/messages/MoneroTransactionFinalAck.py index 68d495b16..74e26ce33 100644 --- a/python/src/trezorlib/messages/MoneroTransactionFinalAck.py +++ b/python/src/trezorlib/messages/MoneroTransactionFinalAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroTransactionFinalRequest.py b/python/src/trezorlib/messages/MoneroTransactionFinalRequest.py index ff84d8d00..52c8a8232 100644 --- a/python/src/trezorlib/messages/MoneroTransactionFinalRequest.py +++ b/python/src/trezorlib/messages/MoneroTransactionFinalRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroTransactionInitAck.py b/python/src/trezorlib/messages/MoneroTransactionInitAck.py index fcf9a1804..30d647738 100644 --- a/python/src/trezorlib/messages/MoneroTransactionInitAck.py +++ b/python/src/trezorlib/messages/MoneroTransactionInitAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroTransactionRsigData import MoneroTransactionRsigData diff --git a/python/src/trezorlib/messages/MoneroTransactionInitRequest.py b/python/src/trezorlib/messages/MoneroTransactionInitRequest.py index cee390c95..788551781 100644 --- a/python/src/trezorlib/messages/MoneroTransactionInitRequest.py +++ b/python/src/trezorlib/messages/MoneroTransactionInitRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroTransactionData import MoneroTransactionData diff --git a/python/src/trezorlib/messages/MoneroTransactionInputViniAck.py b/python/src/trezorlib/messages/MoneroTransactionInputViniAck.py index 6eb0c1d2c..53eee1c90 100644 --- a/python/src/trezorlib/messages/MoneroTransactionInputViniAck.py +++ b/python/src/trezorlib/messages/MoneroTransactionInputViniAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroTransactionInputViniRequest.py b/python/src/trezorlib/messages/MoneroTransactionInputViniRequest.py index 76ef3e990..eb667df21 100644 --- a/python/src/trezorlib/messages/MoneroTransactionInputViniRequest.py +++ b/python/src/trezorlib/messages/MoneroTransactionInputViniRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroTransactionSourceEntry import MoneroTransactionSourceEntry diff --git a/python/src/trezorlib/messages/MoneroTransactionInputsPermutationAck.py b/python/src/trezorlib/messages/MoneroTransactionInputsPermutationAck.py index 64f9f0460..fbdfea2cb 100644 --- a/python/src/trezorlib/messages/MoneroTransactionInputsPermutationAck.py +++ b/python/src/trezorlib/messages/MoneroTransactionInputsPermutationAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroTransactionInputsPermutationRequest.py b/python/src/trezorlib/messages/MoneroTransactionInputsPermutationRequest.py index 554642759..abaf30eb3 100644 --- a/python/src/trezorlib/messages/MoneroTransactionInputsPermutationRequest.py +++ b/python/src/trezorlib/messages/MoneroTransactionInputsPermutationRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroTransactionRsigData.py b/python/src/trezorlib/messages/MoneroTransactionRsigData.py index 5b3b5f5e7..ac783ecb4 100644 --- a/python/src/trezorlib/messages/MoneroTransactionRsigData.py +++ b/python/src/trezorlib/messages/MoneroTransactionRsigData.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroTransactionSetInputAck.py b/python/src/trezorlib/messages/MoneroTransactionSetInputAck.py index 55dec2389..c4e7e5ffe 100644 --- a/python/src/trezorlib/messages/MoneroTransactionSetInputAck.py +++ b/python/src/trezorlib/messages/MoneroTransactionSetInputAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroTransactionSetInputRequest.py b/python/src/trezorlib/messages/MoneroTransactionSetInputRequest.py index bb6375971..ab50be985 100644 --- a/python/src/trezorlib/messages/MoneroTransactionSetInputRequest.py +++ b/python/src/trezorlib/messages/MoneroTransactionSetInputRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroTransactionSourceEntry import MoneroTransactionSourceEntry diff --git a/python/src/trezorlib/messages/MoneroTransactionSetOutputAck.py b/python/src/trezorlib/messages/MoneroTransactionSetOutputAck.py index 1cf03089c..885e117d0 100644 --- a/python/src/trezorlib/messages/MoneroTransactionSetOutputAck.py +++ b/python/src/trezorlib/messages/MoneroTransactionSetOutputAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroTransactionRsigData import MoneroTransactionRsigData diff --git a/python/src/trezorlib/messages/MoneroTransactionSetOutputRequest.py b/python/src/trezorlib/messages/MoneroTransactionSetOutputRequest.py index 34c31ed94..a87f3555b 100644 --- a/python/src/trezorlib/messages/MoneroTransactionSetOutputRequest.py +++ b/python/src/trezorlib/messages/MoneroTransactionSetOutputRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroTransactionDestinationEntry import MoneroTransactionDestinationEntry diff --git a/python/src/trezorlib/messages/MoneroTransactionSignInputAck.py b/python/src/trezorlib/messages/MoneroTransactionSignInputAck.py index a81f9fbee..1793dc800 100644 --- a/python/src/trezorlib/messages/MoneroTransactionSignInputAck.py +++ b/python/src/trezorlib/messages/MoneroTransactionSignInputAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroTransactionSignInputRequest.py b/python/src/trezorlib/messages/MoneroTransactionSignInputRequest.py index 230298a23..6dadd429e 100644 --- a/python/src/trezorlib/messages/MoneroTransactionSignInputRequest.py +++ b/python/src/trezorlib/messages/MoneroTransactionSignInputRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroTransactionSourceEntry import MoneroTransactionSourceEntry diff --git a/python/src/trezorlib/messages/MoneroTransactionSourceEntry.py b/python/src/trezorlib/messages/MoneroTransactionSourceEntry.py index 386fbe121..3ccf12e4a 100644 --- a/python/src/trezorlib/messages/MoneroTransactionSourceEntry.py +++ b/python/src/trezorlib/messages/MoneroTransactionSourceEntry.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MoneroMultisigKLRki import MoneroMultisigKLRki diff --git a/python/src/trezorlib/messages/MoneroTransferDetails.py b/python/src/trezorlib/messages/MoneroTransferDetails.py index 4f38dcf49..26aed0bca 100644 --- a/python/src/trezorlib/messages/MoneroTransferDetails.py +++ b/python/src/trezorlib/messages/MoneroTransferDetails.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MoneroWatchKey.py b/python/src/trezorlib/messages/MoneroWatchKey.py index 132de9f65..f99c99556 100644 --- a/python/src/trezorlib/messages/MoneroWatchKey.py +++ b/python/src/trezorlib/messages/MoneroWatchKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/MultisigRedeemScriptType.py b/python/src/trezorlib/messages/MultisigRedeemScriptType.py index 3289869c0..42a5f931f 100644 --- a/python/src/trezorlib/messages/MultisigRedeemScriptType.py +++ b/python/src/trezorlib/messages/MultisigRedeemScriptType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .HDNodePathType import HDNodePathType diff --git a/python/src/trezorlib/messages/NEMAddress.py b/python/src/trezorlib/messages/NEMAddress.py index 8efe50e17..f0fb782a1 100644 --- a/python/src/trezorlib/messages/NEMAddress.py +++ b/python/src/trezorlib/messages/NEMAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/NEMAggregateModification.py b/python/src/trezorlib/messages/NEMAggregateModification.py index 83046bbb6..1120cffcd 100644 --- a/python/src/trezorlib/messages/NEMAggregateModification.py +++ b/python/src/trezorlib/messages/NEMAggregateModification.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .NEMCosignatoryModification import NEMCosignatoryModification diff --git a/python/src/trezorlib/messages/NEMCosignatoryModification.py b/python/src/trezorlib/messages/NEMCosignatoryModification.py index d6d7d9927..82d39ae46 100644 --- a/python/src/trezorlib/messages/NEMCosignatoryModification.py +++ b/python/src/trezorlib/messages/NEMCosignatoryModification.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/NEMDecryptMessage.py b/python/src/trezorlib/messages/NEMDecryptMessage.py index 8afbe25d4..c2def88a9 100644 --- a/python/src/trezorlib/messages/NEMDecryptMessage.py +++ b/python/src/trezorlib/messages/NEMDecryptMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/NEMDecryptedMessage.py b/python/src/trezorlib/messages/NEMDecryptedMessage.py index 5ea53274a..c145ab394 100644 --- a/python/src/trezorlib/messages/NEMDecryptedMessage.py +++ b/python/src/trezorlib/messages/NEMDecryptedMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/NEMGetAddress.py b/python/src/trezorlib/messages/NEMGetAddress.py index 92ab44105..152bce3d0 100644 --- a/python/src/trezorlib/messages/NEMGetAddress.py +++ b/python/src/trezorlib/messages/NEMGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/NEMImportanceTransfer.py b/python/src/trezorlib/messages/NEMImportanceTransfer.py index d210112ac..2af774ca9 100644 --- a/python/src/trezorlib/messages/NEMImportanceTransfer.py +++ b/python/src/trezorlib/messages/NEMImportanceTransfer.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/NEMImportanceTransferMode.py b/python/src/trezorlib/messages/NEMImportanceTransferMode.py index 13f31fab3..0639db32d 100644 --- a/python/src/trezorlib/messages/NEMImportanceTransferMode.py +++ b/python/src/trezorlib/messages/NEMImportanceTransferMode.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/NEMModificationType.py b/python/src/trezorlib/messages/NEMModificationType.py index f414bd2b0..3e364d3ba 100644 --- a/python/src/trezorlib/messages/NEMModificationType.py +++ b/python/src/trezorlib/messages/NEMModificationType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/NEMMosaic.py b/python/src/trezorlib/messages/NEMMosaic.py index b3386c4dd..062486734 100644 --- a/python/src/trezorlib/messages/NEMMosaic.py +++ b/python/src/trezorlib/messages/NEMMosaic.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/NEMMosaicCreation.py b/python/src/trezorlib/messages/NEMMosaicCreation.py index a6ced1397..7fb48ce7e 100644 --- a/python/src/trezorlib/messages/NEMMosaicCreation.py +++ b/python/src/trezorlib/messages/NEMMosaicCreation.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .NEMMosaicDefinition import NEMMosaicDefinition diff --git a/python/src/trezorlib/messages/NEMMosaicDefinition.py b/python/src/trezorlib/messages/NEMMosaicDefinition.py index e17c7887a..d5b287c33 100644 --- a/python/src/trezorlib/messages/NEMMosaicDefinition.py +++ b/python/src/trezorlib/messages/NEMMosaicDefinition.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/NEMMosaicLevy.py b/python/src/trezorlib/messages/NEMMosaicLevy.py index 05e7985d4..de636afe5 100644 --- a/python/src/trezorlib/messages/NEMMosaicLevy.py +++ b/python/src/trezorlib/messages/NEMMosaicLevy.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/NEMMosaicSupplyChange.py b/python/src/trezorlib/messages/NEMMosaicSupplyChange.py index b583542e5..852e836ad 100644 --- a/python/src/trezorlib/messages/NEMMosaicSupplyChange.py +++ b/python/src/trezorlib/messages/NEMMosaicSupplyChange.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/NEMProvisionNamespace.py b/python/src/trezorlib/messages/NEMProvisionNamespace.py index 2212294f8..84a61ab8b 100644 --- a/python/src/trezorlib/messages/NEMProvisionNamespace.py +++ b/python/src/trezorlib/messages/NEMProvisionNamespace.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/NEMSignTx.py b/python/src/trezorlib/messages/NEMSignTx.py index 5a9eaf4ed..71fece825 100644 --- a/python/src/trezorlib/messages/NEMSignTx.py +++ b/python/src/trezorlib/messages/NEMSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .NEMAggregateModification import NEMAggregateModification diff --git a/python/src/trezorlib/messages/NEMSignedTx.py b/python/src/trezorlib/messages/NEMSignedTx.py index 9a3c1de8c..57423bbda 100644 --- a/python/src/trezorlib/messages/NEMSignedTx.py +++ b/python/src/trezorlib/messages/NEMSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/NEMSupplyChangeType.py b/python/src/trezorlib/messages/NEMSupplyChangeType.py index 86a3d43e1..5255c1e7f 100644 --- a/python/src/trezorlib/messages/NEMSupplyChangeType.py +++ b/python/src/trezorlib/messages/NEMSupplyChangeType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/NEMTransactionCommon.py b/python/src/trezorlib/messages/NEMTransactionCommon.py index ddcca608f..c689e99ac 100644 --- a/python/src/trezorlib/messages/NEMTransactionCommon.py +++ b/python/src/trezorlib/messages/NEMTransactionCommon.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/NEMTransfer.py b/python/src/trezorlib/messages/NEMTransfer.py index 7b0e48b3d..853e6997f 100644 --- a/python/src/trezorlib/messages/NEMTransfer.py +++ b/python/src/trezorlib/messages/NEMTransfer.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .NEMMosaic import NEMMosaic diff --git a/python/src/trezorlib/messages/NextU2FCounter.py b/python/src/trezorlib/messages/NextU2FCounter.py index 84a6fa16a..ab6e1d584 100644 --- a/python/src/trezorlib/messages/NextU2FCounter.py +++ b/python/src/trezorlib/messages/NextU2FCounter.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/OutputScriptType.py b/python/src/trezorlib/messages/OutputScriptType.py index 94116b236..157058350 100644 --- a/python/src/trezorlib/messages/OutputScriptType.py +++ b/python/src/trezorlib/messages/OutputScriptType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/OwnershipId.py b/python/src/trezorlib/messages/OwnershipId.py index ae141cd4c..ee38d4bd2 100644 --- a/python/src/trezorlib/messages/OwnershipId.py +++ b/python/src/trezorlib/messages/OwnershipId.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/OwnershipProof.py b/python/src/trezorlib/messages/OwnershipProof.py index 6c375f255..4a4f20c1e 100644 --- a/python/src/trezorlib/messages/OwnershipProof.py +++ b/python/src/trezorlib/messages/OwnershipProof.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/PassphraseAck.py b/python/src/trezorlib/messages/PassphraseAck.py index 1b597e906..a4fb26b46 100644 --- a/python/src/trezorlib/messages/PassphraseAck.py +++ b/python/src/trezorlib/messages/PassphraseAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/PassphraseRequest.py b/python/src/trezorlib/messages/PassphraseRequest.py index 14310148b..255875322 100644 --- a/python/src/trezorlib/messages/PassphraseRequest.py +++ b/python/src/trezorlib/messages/PassphraseRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/PinMatrixAck.py b/python/src/trezorlib/messages/PinMatrixAck.py index a4db72ece..de0e6210d 100644 --- a/python/src/trezorlib/messages/PinMatrixAck.py +++ b/python/src/trezorlib/messages/PinMatrixAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/PinMatrixRequest.py b/python/src/trezorlib/messages/PinMatrixRequest.py index 12cb92bd0..056a6d7fd 100644 --- a/python/src/trezorlib/messages/PinMatrixRequest.py +++ b/python/src/trezorlib/messages/PinMatrixRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/PinMatrixRequestType.py b/python/src/trezorlib/messages/PinMatrixRequestType.py index ded2c04c8..1662ef95f 100644 --- a/python/src/trezorlib/messages/PinMatrixRequestType.py +++ b/python/src/trezorlib/messages/PinMatrixRequestType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/Ping.py b/python/src/trezorlib/messages/Ping.py index b6c0fe323..57446ee82 100644 --- a/python/src/trezorlib/messages/Ping.py +++ b/python/src/trezorlib/messages/Ping.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/PreauthorizedRequest.py b/python/src/trezorlib/messages/PreauthorizedRequest.py index f12f271e8..a33bfc2d6 100644 --- a/python/src/trezorlib/messages/PreauthorizedRequest.py +++ b/python/src/trezorlib/messages/PreauthorizedRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/PrevInput.py b/python/src/trezorlib/messages/PrevInput.py index cf10ffc93..2b7e06f17 100644 --- a/python/src/trezorlib/messages/PrevInput.py +++ b/python/src/trezorlib/messages/PrevInput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/PrevOutput.py b/python/src/trezorlib/messages/PrevOutput.py index 758767fad..f04aef5b7 100644 --- a/python/src/trezorlib/messages/PrevOutput.py +++ b/python/src/trezorlib/messages/PrevOutput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/PrevTx.py b/python/src/trezorlib/messages/PrevTx.py index a35c141bc..6d28dc872 100644 --- a/python/src/trezorlib/messages/PrevTx.py +++ b/python/src/trezorlib/messages/PrevTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/PublicKey.py b/python/src/trezorlib/messages/PublicKey.py index 0c60704e1..f37580fb9 100644 --- a/python/src/trezorlib/messages/PublicKey.py +++ b/python/src/trezorlib/messages/PublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .HDNodeType import HDNodeType diff --git a/python/src/trezorlib/messages/RebootToBootloader.py b/python/src/trezorlib/messages/RebootToBootloader.py index 40b82e5c3..9a746a1ee 100644 --- a/python/src/trezorlib/messages/RebootToBootloader.py +++ b/python/src/trezorlib/messages/RebootToBootloader.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/RecoveryDevice.py b/python/src/trezorlib/messages/RecoveryDevice.py index 30bb9f23d..13c032467 100644 --- a/python/src/trezorlib/messages/RecoveryDevice.py +++ b/python/src/trezorlib/messages/RecoveryDevice.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/RecoveryDeviceType.py b/python/src/trezorlib/messages/RecoveryDeviceType.py index 965423292..f8439f677 100644 --- a/python/src/trezorlib/messages/RecoveryDeviceType.py +++ b/python/src/trezorlib/messages/RecoveryDeviceType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/RequestType.py b/python/src/trezorlib/messages/RequestType.py index baffc605c..58ac05af3 100644 --- a/python/src/trezorlib/messages/RequestType.py +++ b/python/src/trezorlib/messages/RequestType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/ResetDevice.py b/python/src/trezorlib/messages/ResetDevice.py index 30540e730..102bfa034 100644 --- a/python/src/trezorlib/messages/ResetDevice.py +++ b/python/src/trezorlib/messages/ResetDevice.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/RippleAddress.py b/python/src/trezorlib/messages/RippleAddress.py index b25212b9c..a8256f97d 100644 --- a/python/src/trezorlib/messages/RippleAddress.py +++ b/python/src/trezorlib/messages/RippleAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/RippleGetAddress.py b/python/src/trezorlib/messages/RippleGetAddress.py index c0fc7d78f..40bf45cfa 100644 --- a/python/src/trezorlib/messages/RippleGetAddress.py +++ b/python/src/trezorlib/messages/RippleGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/RipplePayment.py b/python/src/trezorlib/messages/RipplePayment.py index b1579599e..d2acd7c46 100644 --- a/python/src/trezorlib/messages/RipplePayment.py +++ b/python/src/trezorlib/messages/RipplePayment.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/RippleSignTx.py b/python/src/trezorlib/messages/RippleSignTx.py index a2bc7a329..50a6af59c 100644 --- a/python/src/trezorlib/messages/RippleSignTx.py +++ b/python/src/trezorlib/messages/RippleSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .RipplePayment import RipplePayment diff --git a/python/src/trezorlib/messages/RippleSignedTx.py b/python/src/trezorlib/messages/RippleSignedTx.py index 39a2c09fe..d0c2be2fa 100644 --- a/python/src/trezorlib/messages/RippleSignedTx.py +++ b/python/src/trezorlib/messages/RippleSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/SafetyCheckLevel.py b/python/src/trezorlib/messages/SafetyCheckLevel.py index 0bc3566c0..656fb76d2 100644 --- a/python/src/trezorlib/messages/SafetyCheckLevel.py +++ b/python/src/trezorlib/messages/SafetyCheckLevel.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/SdProtect.py b/python/src/trezorlib/messages/SdProtect.py index 7b5d7673e..3f518fc95 100644 --- a/python/src/trezorlib/messages/SdProtect.py +++ b/python/src/trezorlib/messages/SdProtect.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/SdProtectOperationType.py b/python/src/trezorlib/messages/SdProtectOperationType.py index a979dc843..f339a9be5 100644 --- a/python/src/trezorlib/messages/SdProtectOperationType.py +++ b/python/src/trezorlib/messages/SdProtectOperationType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/SelfTest.py b/python/src/trezorlib/messages/SelfTest.py index e881c7710..ae12a785d 100644 --- a/python/src/trezorlib/messages/SelfTest.py +++ b/python/src/trezorlib/messages/SelfTest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/SetU2FCounter.py b/python/src/trezorlib/messages/SetU2FCounter.py index 6a326d245..8bfd1be34 100644 --- a/python/src/trezorlib/messages/SetU2FCounter.py +++ b/python/src/trezorlib/messages/SetU2FCounter.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/SignIdentity.py b/python/src/trezorlib/messages/SignIdentity.py index 5646b8843..d622f1e89 100644 --- a/python/src/trezorlib/messages/SignIdentity.py +++ b/python/src/trezorlib/messages/SignIdentity.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .IdentityType import IdentityType diff --git a/python/src/trezorlib/messages/SignMessage.py b/python/src/trezorlib/messages/SignMessage.py index eb7cc6953..a5448f1e0 100644 --- a/python/src/trezorlib/messages/SignMessage.py +++ b/python/src/trezorlib/messages/SignMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/SignTx.py b/python/src/trezorlib/messages/SignTx.py index 54facdb77..6eebae4e8 100644 --- a/python/src/trezorlib/messages/SignTx.py +++ b/python/src/trezorlib/messages/SignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/SignedIdentity.py b/python/src/trezorlib/messages/SignedIdentity.py index 1cb4e3a75..5dd2bf789 100644 --- a/python/src/trezorlib/messages/SignedIdentity.py +++ b/python/src/trezorlib/messages/SignedIdentity.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/StellarAccountMergeOp.py b/python/src/trezorlib/messages/StellarAccountMergeOp.py index 79b4831e3..c7abb051f 100644 --- a/python/src/trezorlib/messages/StellarAccountMergeOp.py +++ b/python/src/trezorlib/messages/StellarAccountMergeOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/StellarAddress.py b/python/src/trezorlib/messages/StellarAddress.py index bf8fab603..479410036 100644 --- a/python/src/trezorlib/messages/StellarAddress.py +++ b/python/src/trezorlib/messages/StellarAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/StellarAllowTrustOp.py b/python/src/trezorlib/messages/StellarAllowTrustOp.py index 658120122..94e1ad33c 100644 --- a/python/src/trezorlib/messages/StellarAllowTrustOp.py +++ b/python/src/trezorlib/messages/StellarAllowTrustOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/StellarAssetType.py b/python/src/trezorlib/messages/StellarAssetType.py index b5ed6db97..38f169a74 100644 --- a/python/src/trezorlib/messages/StellarAssetType.py +++ b/python/src/trezorlib/messages/StellarAssetType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/StellarBumpSequenceOp.py b/python/src/trezorlib/messages/StellarBumpSequenceOp.py index bfe512aea..c8ebde34f 100644 --- a/python/src/trezorlib/messages/StellarBumpSequenceOp.py +++ b/python/src/trezorlib/messages/StellarBumpSequenceOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/StellarChangeTrustOp.py b/python/src/trezorlib/messages/StellarChangeTrustOp.py index 1986b7289..12f689db4 100644 --- a/python/src/trezorlib/messages/StellarChangeTrustOp.py +++ b/python/src/trezorlib/messages/StellarChangeTrustOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .StellarAssetType import StellarAssetType diff --git a/python/src/trezorlib/messages/StellarCreateAccountOp.py b/python/src/trezorlib/messages/StellarCreateAccountOp.py index ec80793d8..bcb49f99a 100644 --- a/python/src/trezorlib/messages/StellarCreateAccountOp.py +++ b/python/src/trezorlib/messages/StellarCreateAccountOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/StellarCreatePassiveOfferOp.py b/python/src/trezorlib/messages/StellarCreatePassiveOfferOp.py index ada0b59dc..1ea88f513 100644 --- a/python/src/trezorlib/messages/StellarCreatePassiveOfferOp.py +++ b/python/src/trezorlib/messages/StellarCreatePassiveOfferOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .StellarAssetType import StellarAssetType diff --git a/python/src/trezorlib/messages/StellarGetAddress.py b/python/src/trezorlib/messages/StellarGetAddress.py index 0a1a1174f..0ea52c94e 100644 --- a/python/src/trezorlib/messages/StellarGetAddress.py +++ b/python/src/trezorlib/messages/StellarGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/StellarManageDataOp.py b/python/src/trezorlib/messages/StellarManageDataOp.py index 2640d3c15..4ed515e62 100644 --- a/python/src/trezorlib/messages/StellarManageDataOp.py +++ b/python/src/trezorlib/messages/StellarManageDataOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/StellarManageOfferOp.py b/python/src/trezorlib/messages/StellarManageOfferOp.py index d1d25686f..2bad8a14f 100644 --- a/python/src/trezorlib/messages/StellarManageOfferOp.py +++ b/python/src/trezorlib/messages/StellarManageOfferOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .StellarAssetType import StellarAssetType diff --git a/python/src/trezorlib/messages/StellarPathPaymentOp.py b/python/src/trezorlib/messages/StellarPathPaymentOp.py index 6ca726046..255bf6de3 100644 --- a/python/src/trezorlib/messages/StellarPathPaymentOp.py +++ b/python/src/trezorlib/messages/StellarPathPaymentOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .StellarAssetType import StellarAssetType diff --git a/python/src/trezorlib/messages/StellarPaymentOp.py b/python/src/trezorlib/messages/StellarPaymentOp.py index ea8388878..cd221947c 100644 --- a/python/src/trezorlib/messages/StellarPaymentOp.py +++ b/python/src/trezorlib/messages/StellarPaymentOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .StellarAssetType import StellarAssetType diff --git a/python/src/trezorlib/messages/StellarSetOptionsOp.py b/python/src/trezorlib/messages/StellarSetOptionsOp.py index 2e68d868f..2f9804a4a 100644 --- a/python/src/trezorlib/messages/StellarSetOptionsOp.py +++ b/python/src/trezorlib/messages/StellarSetOptionsOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/StellarSignTx.py b/python/src/trezorlib/messages/StellarSignTx.py index 27b1ba504..7155a5543 100644 --- a/python/src/trezorlib/messages/StellarSignTx.py +++ b/python/src/trezorlib/messages/StellarSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/StellarSignedTx.py b/python/src/trezorlib/messages/StellarSignedTx.py index 88e6912fe..9eae9fdb3 100644 --- a/python/src/trezorlib/messages/StellarSignedTx.py +++ b/python/src/trezorlib/messages/StellarSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/StellarTxOpRequest.py b/python/src/trezorlib/messages/StellarTxOpRequest.py index 4fab69754..4979f0b05 100644 --- a/python/src/trezorlib/messages/StellarTxOpRequest.py +++ b/python/src/trezorlib/messages/StellarTxOpRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/Success.py b/python/src/trezorlib/messages/Success.py index 45c42fcf0..8b513c982 100644 --- a/python/src/trezorlib/messages/Success.py +++ b/python/src/trezorlib/messages/Success.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TezosAddress.py b/python/src/trezorlib/messages/TezosAddress.py index c4a8491fb..d0cf26bb9 100644 --- a/python/src/trezorlib/messages/TezosAddress.py +++ b/python/src/trezorlib/messages/TezosAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TezosBallotOp.py b/python/src/trezorlib/messages/TezosBallotOp.py index 3ebef66f5..825b1e5e4 100644 --- a/python/src/trezorlib/messages/TezosBallotOp.py +++ b/python/src/trezorlib/messages/TezosBallotOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TezosBallotType.py b/python/src/trezorlib/messages/TezosBallotType.py index cb7c9a096..c0763dbb8 100644 --- a/python/src/trezorlib/messages/TezosBallotType.py +++ b/python/src/trezorlib/messages/TezosBallotType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/TezosContractID.py b/python/src/trezorlib/messages/TezosContractID.py index b1f1fd88c..f2e35eb4e 100644 --- a/python/src/trezorlib/messages/TezosContractID.py +++ b/python/src/trezorlib/messages/TezosContractID.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TezosContractType.py b/python/src/trezorlib/messages/TezosContractType.py index d6d66a2fa..d0e990931 100644 --- a/python/src/trezorlib/messages/TezosContractType.py +++ b/python/src/trezorlib/messages/TezosContractType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/TezosDelegationOp.py b/python/src/trezorlib/messages/TezosDelegationOp.py index d787120c5..4ed792b9b 100644 --- a/python/src/trezorlib/messages/TezosDelegationOp.py +++ b/python/src/trezorlib/messages/TezosDelegationOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TezosGetAddress.py b/python/src/trezorlib/messages/TezosGetAddress.py index 0b4873d7a..20e95c406 100644 --- a/python/src/trezorlib/messages/TezosGetAddress.py +++ b/python/src/trezorlib/messages/TezosGetAddress.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TezosGetPublicKey.py b/python/src/trezorlib/messages/TezosGetPublicKey.py index 2a5152a07..80e24a2bc 100644 --- a/python/src/trezorlib/messages/TezosGetPublicKey.py +++ b/python/src/trezorlib/messages/TezosGetPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TezosManagerTransfer.py b/python/src/trezorlib/messages/TezosManagerTransfer.py index 178fdad57..728d51d03 100644 --- a/python/src/trezorlib/messages/TezosManagerTransfer.py +++ b/python/src/trezorlib/messages/TezosManagerTransfer.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TezosContractID import TezosContractID diff --git a/python/src/trezorlib/messages/TezosOriginationOp.py b/python/src/trezorlib/messages/TezosOriginationOp.py index 9682b018a..de9cec82e 100644 --- a/python/src/trezorlib/messages/TezosOriginationOp.py +++ b/python/src/trezorlib/messages/TezosOriginationOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TezosParametersManager.py b/python/src/trezorlib/messages/TezosParametersManager.py index 698c98830..397bb62e4 100644 --- a/python/src/trezorlib/messages/TezosParametersManager.py +++ b/python/src/trezorlib/messages/TezosParametersManager.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TezosManagerTransfer import TezosManagerTransfer diff --git a/python/src/trezorlib/messages/TezosProposalOp.py b/python/src/trezorlib/messages/TezosProposalOp.py index dd06626a5..5a3874b60 100644 --- a/python/src/trezorlib/messages/TezosProposalOp.py +++ b/python/src/trezorlib/messages/TezosProposalOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TezosPublicKey.py b/python/src/trezorlib/messages/TezosPublicKey.py index b5f76de13..190a594b2 100644 --- a/python/src/trezorlib/messages/TezosPublicKey.py +++ b/python/src/trezorlib/messages/TezosPublicKey.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TezosRevealOp.py b/python/src/trezorlib/messages/TezosRevealOp.py index 4ca755ad6..c71604b9e 100644 --- a/python/src/trezorlib/messages/TezosRevealOp.py +++ b/python/src/trezorlib/messages/TezosRevealOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TezosSignTx.py b/python/src/trezorlib/messages/TezosSignTx.py index ba2b839f5..94f4067e0 100644 --- a/python/src/trezorlib/messages/TezosSignTx.py +++ b/python/src/trezorlib/messages/TezosSignTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TezosBallotOp import TezosBallotOp diff --git a/python/src/trezorlib/messages/TezosSignedTx.py b/python/src/trezorlib/messages/TezosSignedTx.py index 12acad8a8..326679685 100644 --- a/python/src/trezorlib/messages/TezosSignedTx.py +++ b/python/src/trezorlib/messages/TezosSignedTx.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TezosTransactionOp.py b/python/src/trezorlib/messages/TezosTransactionOp.py index e20cb0348..ef076b23e 100644 --- a/python/src/trezorlib/messages/TezosTransactionOp.py +++ b/python/src/trezorlib/messages/TezosTransactionOp.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TezosContractID import TezosContractID diff --git a/python/src/trezorlib/messages/TransactionType.py b/python/src/trezorlib/messages/TransactionType.py index 7b68ef534..f66eb4b28 100644 --- a/python/src/trezorlib/messages/TransactionType.py +++ b/python/src/trezorlib/messages/TransactionType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TxInputType import TxInputType diff --git a/python/src/trezorlib/messages/TxAck.py b/python/src/trezorlib/messages/TxAck.py index 3d1b7bfa0..85a68d038 100644 --- a/python/src/trezorlib/messages/TxAck.py +++ b/python/src/trezorlib/messages/TxAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TransactionType import TransactionType diff --git a/python/src/trezorlib/messages/TxAckInput.py b/python/src/trezorlib/messages/TxAckInput.py index f7e2dd58d..63e9c73ee 100644 --- a/python/src/trezorlib/messages/TxAckInput.py +++ b/python/src/trezorlib/messages/TxAckInput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TxAckInputWrapper import TxAckInputWrapper diff --git a/python/src/trezorlib/messages/TxAckInputWrapper.py b/python/src/trezorlib/messages/TxAckInputWrapper.py index 63a72c657..1c252d5bf 100644 --- a/python/src/trezorlib/messages/TxAckInputWrapper.py +++ b/python/src/trezorlib/messages/TxAckInputWrapper.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TxInput import TxInput diff --git a/python/src/trezorlib/messages/TxAckOutput.py b/python/src/trezorlib/messages/TxAckOutput.py index 6dbf905d1..16f303451 100644 --- a/python/src/trezorlib/messages/TxAckOutput.py +++ b/python/src/trezorlib/messages/TxAckOutput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TxAckOutputWrapper import TxAckOutputWrapper diff --git a/python/src/trezorlib/messages/TxAckOutputWrapper.py b/python/src/trezorlib/messages/TxAckOutputWrapper.py index 8171697d8..c8906089c 100644 --- a/python/src/trezorlib/messages/TxAckOutputWrapper.py +++ b/python/src/trezorlib/messages/TxAckOutputWrapper.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TxOutput import TxOutput diff --git a/python/src/trezorlib/messages/TxAckPrevExtraData.py b/python/src/trezorlib/messages/TxAckPrevExtraData.py index 699dc97f6..2d53debeb 100644 --- a/python/src/trezorlib/messages/TxAckPrevExtraData.py +++ b/python/src/trezorlib/messages/TxAckPrevExtraData.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TxAckPrevExtraDataWrapper import TxAckPrevExtraDataWrapper diff --git a/python/src/trezorlib/messages/TxAckPrevExtraDataWrapper.py b/python/src/trezorlib/messages/TxAckPrevExtraDataWrapper.py index 431efe64c..4d8109ce5 100644 --- a/python/src/trezorlib/messages/TxAckPrevExtraDataWrapper.py +++ b/python/src/trezorlib/messages/TxAckPrevExtraDataWrapper.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TxAckPrevInput.py b/python/src/trezorlib/messages/TxAckPrevInput.py index 45a505a80..7ccc3fc25 100644 --- a/python/src/trezorlib/messages/TxAckPrevInput.py +++ b/python/src/trezorlib/messages/TxAckPrevInput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TxAckPrevInputWrapper import TxAckPrevInputWrapper diff --git a/python/src/trezorlib/messages/TxAckPrevInputWrapper.py b/python/src/trezorlib/messages/TxAckPrevInputWrapper.py index 628009a91..cf433cde2 100644 --- a/python/src/trezorlib/messages/TxAckPrevInputWrapper.py +++ b/python/src/trezorlib/messages/TxAckPrevInputWrapper.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .PrevInput import PrevInput diff --git a/python/src/trezorlib/messages/TxAckPrevMeta.py b/python/src/trezorlib/messages/TxAckPrevMeta.py index cbaa74c70..474d09754 100644 --- a/python/src/trezorlib/messages/TxAckPrevMeta.py +++ b/python/src/trezorlib/messages/TxAckPrevMeta.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .PrevTx import PrevTx diff --git a/python/src/trezorlib/messages/TxAckPrevOutput.py b/python/src/trezorlib/messages/TxAckPrevOutput.py index 421b08306..c27b83ba8 100644 --- a/python/src/trezorlib/messages/TxAckPrevOutput.py +++ b/python/src/trezorlib/messages/TxAckPrevOutput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TxAckPrevOutputWrapper import TxAckPrevOutputWrapper diff --git a/python/src/trezorlib/messages/TxAckPrevOutputWrapper.py b/python/src/trezorlib/messages/TxAckPrevOutputWrapper.py index d8399f0d9..62c36a958 100644 --- a/python/src/trezorlib/messages/TxAckPrevOutputWrapper.py +++ b/python/src/trezorlib/messages/TxAckPrevOutputWrapper.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .PrevOutput import PrevOutput diff --git a/python/src/trezorlib/messages/TxInput.py b/python/src/trezorlib/messages/TxInput.py index c7d2703e7..2721f4d57 100644 --- a/python/src/trezorlib/messages/TxInput.py +++ b/python/src/trezorlib/messages/TxInput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/python/src/trezorlib/messages/TxInputType.py b/python/src/trezorlib/messages/TxInputType.py index d3e74a513..1bb0d0bf7 100644 --- a/python/src/trezorlib/messages/TxInputType.py +++ b/python/src/trezorlib/messages/TxInputType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/python/src/trezorlib/messages/TxOutput.py b/python/src/trezorlib/messages/TxOutput.py index 82829e981..b32158813 100644 --- a/python/src/trezorlib/messages/TxOutput.py +++ b/python/src/trezorlib/messages/TxOutput.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/python/src/trezorlib/messages/TxOutputBinType.py b/python/src/trezorlib/messages/TxOutputBinType.py index 0747510c7..c470e0e2c 100644 --- a/python/src/trezorlib/messages/TxOutputBinType.py +++ b/python/src/trezorlib/messages/TxOutputBinType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TxOutputType.py b/python/src/trezorlib/messages/TxOutputType.py index a9f89e3b0..642cde19f 100644 --- a/python/src/trezorlib/messages/TxOutputType.py +++ b/python/src/trezorlib/messages/TxOutputType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .MultisigRedeemScriptType import MultisigRedeemScriptType diff --git a/python/src/trezorlib/messages/TxRequest.py b/python/src/trezorlib/messages/TxRequest.py index 3bd40e91e..973726afb 100644 --- a/python/src/trezorlib/messages/TxRequest.py +++ b/python/src/trezorlib/messages/TxRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .TxRequestDetailsType import TxRequestDetailsType diff --git a/python/src/trezorlib/messages/TxRequestDetailsType.py b/python/src/trezorlib/messages/TxRequestDetailsType.py index 5e7022970..3f4bb71af 100644 --- a/python/src/trezorlib/messages/TxRequestDetailsType.py +++ b/python/src/trezorlib/messages/TxRequestDetailsType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/TxRequestSerializedType.py b/python/src/trezorlib/messages/TxRequestSerializedType.py index ee64c62d1..2937b49db 100644 --- a/python/src/trezorlib/messages/TxRequestSerializedType.py +++ b/python/src/trezorlib/messages/TxRequestSerializedType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/VerifyMessage.py b/python/src/trezorlib/messages/VerifyMessage.py index f2ffaebad..ccaa4487a 100644 --- a/python/src/trezorlib/messages/VerifyMessage.py +++ b/python/src/trezorlib/messages/VerifyMessage.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/WebAuthnAddResidentCredential.py b/python/src/trezorlib/messages/WebAuthnAddResidentCredential.py index 34c43381e..508eb36da 100644 --- a/python/src/trezorlib/messages/WebAuthnAddResidentCredential.py +++ b/python/src/trezorlib/messages/WebAuthnAddResidentCredential.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/WebAuthnCredential.py b/python/src/trezorlib/messages/WebAuthnCredential.py index 479ef797f..6c083ca3d 100644 --- a/python/src/trezorlib/messages/WebAuthnCredential.py +++ b/python/src/trezorlib/messages/WebAuthnCredential.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/WebAuthnCredentials.py b/python/src/trezorlib/messages/WebAuthnCredentials.py index 1da555aa9..8fb1501c1 100644 --- a/python/src/trezorlib/messages/WebAuthnCredentials.py +++ b/python/src/trezorlib/messages/WebAuthnCredentials.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p from .WebAuthnCredential import WebAuthnCredential diff --git a/python/src/trezorlib/messages/WebAuthnListResidentCredentials.py b/python/src/trezorlib/messages/WebAuthnListResidentCredentials.py index 33a2c6f96..8ddc97367 100644 --- a/python/src/trezorlib/messages/WebAuthnListResidentCredentials.py +++ b/python/src/trezorlib/messages/WebAuthnListResidentCredentials.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/WebAuthnRemoveResidentCredential.py b/python/src/trezorlib/messages/WebAuthnRemoveResidentCredential.py index d36623bb6..8c51998fd 100644 --- a/python/src/trezorlib/messages/WebAuthnRemoveResidentCredential.py +++ b/python/src/trezorlib/messages/WebAuthnRemoveResidentCredential.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/WipeDevice.py b/python/src/trezorlib/messages/WipeDevice.py index e5c213ae8..193769924 100644 --- a/python/src/trezorlib/messages/WipeDevice.py +++ b/python/src/trezorlib/messages/WipeDevice.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/WordAck.py b/python/src/trezorlib/messages/WordAck.py index 84f261e0d..d869dc916 100644 --- a/python/src/trezorlib/messages/WordAck.py +++ b/python/src/trezorlib/messages/WordAck.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/WordRequest.py b/python/src/trezorlib/messages/WordRequest.py index e49982ebb..632c52622 100644 --- a/python/src/trezorlib/messages/WordRequest.py +++ b/python/src/trezorlib/messages/WordRequest.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .. import protobuf as p if __debug__: diff --git a/python/src/trezorlib/messages/WordRequestType.py b/python/src/trezorlib/messages/WordRequestType.py index 4004fb14a..f0c6aa451 100644 --- a/python/src/trezorlib/messages/WordRequestType.py +++ b/python/src/trezorlib/messages/WordRequestType.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file if __debug__: try: from typing_extensions import Literal # noqa: F401 diff --git a/python/src/trezorlib/messages/__init__.py b/python/src/trezorlib/messages/__init__.py index e39608a70..b1f18aaab 100644 --- a/python/src/trezorlib/messages/__init__.py +++ b/python/src/trezorlib/messages/__init__.py @@ -1,5 +1,6 @@ # Automatically generated by pb2py # fmt: off +# isort:skip_file from .Address import Address from .ApplyFlags import ApplyFlags