File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -42,18 +42,18 @@ def _update_conf_group_protocol(conf=None):
4242
4343
4444class TestConsumer (Consumer ):
45- def __init__ (self , conf , ** kwargs ):
45+ def __init__ (self , conf = None , ** kwargs ):
4646 _update_conf_group_protocol (conf )
4747 super (TestConsumer , self ).__init__ (conf , ** kwargs )
4848
4949
5050class TestDeserializingConsumer (DeserializingConsumer ):
51- def __init__ (self , conf , ** kwargs ):
51+ def __init__ (self , conf = None , ** kwargs ):
5252 _update_conf_group_protocol (conf )
5353 super (TestDeserializingConsumer , self ).__init__ (conf , ** kwargs )
5454
5555
5656class TestAvroConsumer (AvroConsumer ):
57- def __init__ (self , conf , ** kwargs ):
57+ def __init__ (self , conf = None , ** kwargs ):
5858 _update_conf_group_protocol (conf )
5959 super (TestAvroConsumer , self ).__init__ (conf , ** kwargs )
You can’t perform that action at this time.
0 commit comments