Skip to content

Commit 11ca5d9

Browse files
committed
formatting
1 parent 366db97 commit 11ca5d9

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

examples/getting_started/getting_started.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
AddressHelper,
66
AMQPMessagingHandler,
77
Connection,
8+
Converter,
89
Environment,
910
Event,
1011
ExchangeSpecification,
1112
ExchangeToQueueBindingSpecification,
1213
Message,
1314
OutcomeState,
1415
QuorumQueueSpecification,
15-
Converter,
1616
)
1717

1818
MESSAGES_TO_PUBLISH = 100

examples/streams/example_with_streams.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
AMQPMessagingHandler,
66
Connection,
77
ConnectionClosed,
8+
Converter,
89
Environment,
910
Event,
1011
Message,
1112
OffsetSpecification,
1213
StreamOptions,
1314
StreamSpecification,
14-
Converter,
1515
)
1616

1717
MESSAGES_TO_PUBLISH = 100

rabbitmq_amqp_python_client/__init__.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
RecoveryConfiguration,
1616
StreamOptions,
1717
)
18-
19-
from .utils import Converter
2018
from .environment import Environment
2119
from .exceptions import (
2220
ArgumentOutOfRangeException,
@@ -44,6 +42,7 @@
4442
WinClientCert,
4543
WinSslConfigurationContext,
4644
)
45+
from .utils import Converter
4746

4847
try:
4948
__version__ = metadata.version(__package__)

0 commit comments

Comments
 (0)