Skip to content

Commit 602f820

Browse files
committed
Remove implementation of get_raw() when inheriting DSSInternalDict
1 parent 0275b7b commit 602f820

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

dataikuapi/dss/statistics.py

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -121,14 +121,6 @@ def list_cards(self):
121121
return [DSSStatisticsCardSettings(self.client, card_definition)
122122
for card_definition in self._internal_dict['rootCard']['cards']]
123123

124-
def get_raw(self):
125-
"""
126-
Gets a reference to the raw settings of the worksheet.
127-
128-
:rtype: dict
129-
"""
130-
return self._internal_dict
131-
132124
def set_sampling_settings(self, selection):
133125
"""
134126
Sets the sampling settings of the worksheet
@@ -165,14 +157,6 @@ def __init__(self, client, card_definition):
165157
self.client = client
166158
self._internal_dict = card_definition
167159

168-
def get_raw(self):
169-
"""
170-
Gets a reference to the raw settings of the card.
171-
172-
:rtype: dict
173-
"""
174-
return self._internal_dict
175-
176160
def compile(self):
177161
"""
178162
Gets the underlying computation used to compute the card results.
@@ -197,14 +181,6 @@ def __init__(self, computation_definition):
197181
self).__init__(computation_definition)
198182
self._internal_dict = computation_definition
199183

200-
def get_raw(self):
201-
"""
202-
Gets the raw settings of the computation.
203-
204-
:rtype: dict
205-
"""
206-
return self._internal_dict
207-
208184
@staticmethod
209185
def _from_computation_or_dict(computation_or_dict):
210186
if isinstance(computation_or_dict, DSSStatisticsComputationSettings):

0 commit comments

Comments
 (0)