Skip to content

Commit

Permalink
remove stupid auto imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Coats committed Nov 1, 2023
1 parent e520757 commit 4edd75e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/types/payload.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from typing import Any, Dict, List, TypeAlias, Union
from dataclasses import dataclass, field
from iota_sdk.types.common import HexStr, json
from bindings.python.iota_sdk.types.transaction import Transaction
from iota_sdk.types.transaction import Transaction
from iota_sdk.types.unlock import SignatureUnlock, ReferenceUnlock


Expand Down
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/types/transaction_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from iota_sdk.types.address import Address
from iota_sdk.types.output import Output
from iota_sdk.types.output_metadata import OutputMetadata
from bindings.python.iota_sdk.types.transaction import Transaction
from iota_sdk.types.transaction import Transaction
from iota_sdk.types.payload import SignedTransactionPayload
from iota_sdk.types.signature import Bip44
from iota_sdk.types.common import json
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from iota_sdk.types.signature import Ed25519Signature
from iota_sdk.types.address import Address, deserialize_address
from iota_sdk.types.common import HexStr
from bindings.python.iota_sdk.types.transaction import Transaction
from iota_sdk.types.transaction import Transaction
from iota_sdk.types.node_info import ProtocolParameters
from iota_sdk.types.output_id import OutputId
from iota_sdk.types.output import Output
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/wallet/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from iota_sdk.types.output_params import OutputParams
from iota_sdk.types.transaction_data import PreparedTransactionData, SignedTransactionData
from iota_sdk.types.send_params import CreateAccountOutputParams, CreateNativeTokenParams, MintNftParams, SendNativeTokensParams, SendNftParams, SendParams
from bindings.python.iota_sdk.types.transaction_with_metadata import TransactionWithMetadata
from iota_sdk.types.transaction_with_metadata import TransactionWithMetadata
from iota_sdk.types.transaction_options import TransactionOptions
from iota_sdk.types.consolidation_params import ConsolidationParams

Expand Down
2 changes: 1 addition & 1 deletion bindings/python/iota_sdk/wallet/prepared_transaction.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from typing import TYPE_CHECKING, Dict, Union
from dacite import from_dict

from bindings.python.iota_sdk.types.transaction_with_metadata import TransactionWithMetadata
from iota_sdk.types.transaction_with_metadata import TransactionWithMetadata
from iota_sdk.types.transaction_data import PreparedTransactionData

# Required to prevent circular import
Expand Down

0 comments on commit 4edd75e

Please sign in to comment.