Skip to content

Commit eea1cc1

Browse files
authored
Merge pull request #4 from stat-kwon/master
Remove transaction variable used when initializing in connector
2 parents 1a42cba + 145183b commit eea1cc1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • src/spaceone/monitoring/connector/google_cloud_connector

src/spaceone/monitoring/connector/google_cloud_connector/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010

1111

1212
class GoogleCloudConnector(BaseConnector):
13-
def __init__(self, transaction=None, config=None):
13+
def __init__(self, *args, **kwargs):
1414
self.client = None
1515
self.project_id = None
16-
super().__init__(transaction, config)
16+
super().__init__(*args, **kwargs)
1717

1818
def set_connect(self, schema, options: dict, secret_data: dict):
1919
"""

0 commit comments

Comments
 (0)