Skip to content

Commit a9d7336

Browse files
committed
Another bugfix
1 parent af70d3b commit a9d7336

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

shuffle-tools/1.2.0/src/app.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2348,8 +2348,6 @@ def get_cache_value(self, key, category=""):
23482348
self.logger.info("Value couldn't be parsed, or json dump of value failed")
23492349
return value.text
23502350

2351-
def set_datastore_value(self, key, value, category=""):
2352-
return self.set_cache_value(self, key, value, category=category)
23532351

23542352
# Check if a specific key exists in a datastore category or not
23552353
# Otherwise appends it automatically
@@ -2527,6 +2525,9 @@ def set_cache_value(self, key, value, category=""):
25272525
self.logger.info("Value couldn't be parsed")
25282526
return response.text
25292527

2528+
def set_datastore_value(self, key, value, category=""):
2529+
return self.set_cache_value(key, value, category=category)
2530+
25302531
def convert_json_to_tags(
25312532
self, json_object, split_value=", ", include_key=True, lowercase=True
25322533
):

0 commit comments

Comments
 (0)