Skip to content

Commit 9a9b9d4

Browse files
author
seolmin
committed
fix: remove transaction variable used when initializing in connector
1 parent 54c897c commit 9a9b9d4

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)