Skip to content

Commit 12be347

Browse files
authored
Merge pull request #33 from stat-kwon/master
Remove transaction variable used when initializing in connector
2 parents 54c897c + 9a9b9d4 commit 12be347

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/cloudforet/cost_analysis/connector/http_file_connector.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
class HTTPFileConnector(BaseConnector):
2121

22-
def __init__(self, transaction: Transaction, config: dict = None):
23-
super().__init__(transaction, config)
22+
def __init__(self, *args, **kwargs):
23+
super().__init__(*args, **kwargs)
2424
self.base_url = None
2525
self.field_mapper = None
2626
self.default_vars = None

0 commit comments

Comments
 (0)