Skip to content
This repository was archived by the owner on Jan 13, 2023. It is now read-only.

Commit ad27006

Browse files
committed
List imports alphabetically
1 parent a480d60 commit ad27006

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

iota/commands/core/find_transactions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
from iota import Address, Tag, TransactionHash
99
from iota.commands import FilterCommand, RequestFilter, ResponseFilter
10-
from iota.filters import Trytes, AddressNoChecksum
10+
from iota.filters import AddressNoChecksum, Trytes
1111

1212
__all__ = [
1313
'FindTransactionsCommand',

iota/commands/core/get_balances.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from iota import Address
88
from iota.commands import FilterCommand, RequestFilter, ResponseFilter
9-
from iota.filters import Trytes, AddressNoChecksum
9+
from iota.filters import AddressNoChecksum, Trytes
1010

1111
__all__ = [
1212
'GetBalancesCommand',

test/filters_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from filters.test import BaseFilterTestCase
77

88
from iota import Address, TryteString, TransactionHash
9-
from iota.filters import GeneratedAddress, NodeUri, Trytes, AddressNoChecksum
9+
from iota.filters import AddressNoChecksum, GeneratedAddress, NodeUri, Trytes
1010

1111

1212
class GeneratedAddressTestCase(BaseFilterTestCase):

0 commit comments

Comments
 (0)