Skip to content

Commit dad91eb

Browse files
committed
formatting
Signed-off-by: Gabriele Santomaggio <[email protected]>
1 parent 65e5c2c commit dad91eb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

rabbitmq_amqp_python_client/entities.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,16 +150,16 @@ class ExchangeToExchangeBindingSpecification:
150150

151151

152152
class StreamFilterOptions:
153-
values: Optional[list[str]] = (None,)
154-
match_unfiltered: bool = (False,)
155-
application_properties: dict = (field(default_factory=dict),)
153+
values: Optional[list[str]] = None
154+
match_unfiltered: bool = False
155+
application_properties: Optional[dict[str, Any]] = None
156156
sql: str = ""
157157

158158
def __init__(
159159
self,
160160
values: Optional[list[str]] = None,
161161
match_unfiltered: bool = False,
162-
application_properties: Optional[dict] = None,
162+
application_properties: Optional[dict[str, Any]] = None,
163163
sql: str = "",
164164
):
165165
self.values = values

0 commit comments

Comments
 (0)