Skip to content

Commit 1ed86af

Browse files
authored
Merge pull request #46 from stat-kwon/master
Fix typo
2 parents 62e6d6f + 75ed514 commit 1ed86af

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

src/cloudforet/cost_analysis/manager/cost_manager.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ def __init__(self, *args, **kwargs):
1919
self.field_mapper = None
2020

2121
def get_data(self, options, secret_data, schema, task_options):
22-
self._check_task_options(task_options)
23-
2422
if "default_vars" in options:
2523
self.default_vars = options["default_vars"]
2624

@@ -87,11 +85,6 @@ def _make_cost_data(self, results):
8785
costs_data.append(data)
8886
return costs_data
8987

90-
@staticmethod
91-
def _check_task_options(task_options):
92-
if "base_url" not in task_options or "bucket_name" not in task_options:
93-
raise ERROR_REQUIRED_PARAMETER(key="task_options")
94-
9588
@staticmethod
9689
def _apply_strip_to_dict_keys(result):
9790
for key in list(result.keys()):

0 commit comments

Comments
 (0)