Skip to content

Commit 144c4f9

Browse files
committed
formatting
1 parent cf5ba70 commit 144c4f9

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

rabbitmq_amqp_python_client/__init__.py

-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
from .common import ExchangeType, QueueType
66
from .connection import Connection
77
from .consumer import Consumer
8-
from .converter import Converter
98
from .entities import (
109
ExchangeCustomSpecification,
1110
ExchangeSpecification,
@@ -92,5 +91,4 @@
9291
"ExchangeCustomSpecification",
9392
"RecoveryConfiguration",
9493
"OAuth2Options",
95-
"Converter",
9694
]

tests/test_consumer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
AddressHelper,
33
ArgumentOutOfRangeException,
44
Connection,
5-
Converter,
65
Environment,
76
QuorumQueueSpecification,
87
)
8+
from rabbitmq_amqp_python_client.utils import Converter
99

1010
from .conftest import (
1111
ConsumerTestException,

tests/test_publisher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
ArgumentOutOfRangeException,
66
Connection,
77
ConnectionClosed,
8-
Converter,
98
Environment,
109
Message,
1110
OutcomeState,
@@ -14,6 +13,7 @@
1413
StreamSpecification,
1514
ValidationCodeException,
1615
)
16+
from rabbitmq_amqp_python_client.utils import Converter
1717

1818
from .http_requests import delete_all_connections
1919
from .utils import create_binding, publish_per_message

tests/utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
from rabbitmq_amqp_python_client import (
88
AddressHelper,
99
Connection,
10-
Converter,
1110
Delivery,
1211
ExchangeSpecification,
1312
ExchangeToQueueBindingSpecification,
@@ -17,6 +16,7 @@
1716
Publisher,
1817
QuorumQueueSpecification,
1918
)
19+
from rabbitmq_amqp_python_client.utils import Converter
2020

2121

2222
def publish_messages(

0 commit comments

Comments
 (0)