File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
rabbitmq_amqp_python_client Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -150,16 +150,16 @@ class ExchangeToExchangeBindingSpecification:
150150
151151
152152class 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
You can’t perform that action at this time.
0 commit comments