File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -11,15 +11,15 @@ class AWSConnector(BaseConnector):
1111 client = None
1212 schema = None
1313
14- def __init__ (self , ** kwargs ):
14+ def __init__ (self , * args , * *kwargs ):
1515 """
1616 kwargs
1717 - schema
1818 - options
1919 - secret_data
2020 """
2121
22- super ().__init__ (transaction = None , config = None )
22+ super ().__init__ (* args , ** kwargs )
2323 self .secret_data = kwargs .get ('secret_data' )
2424 self .schema = kwargs .get ('schema' , DEFAULT_SCHEMA )
2525
Original file line number Diff line number Diff line change 1010
1111
1212class MonitoringManager (BaseManager ):
13- def __init__ (self , transaction ):
14- super ().__init__ (transaction )
13+ def __init__ (self , * args , ** kwargs ):
14+ super ().__init__ (* args , ** kwargs )
1515
1616 def list_logs (self , params ):
1717 resource_type = params ['query' ].get ('resource_type' )
You can’t perform that action at this time.
0 commit comments