We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9755fea commit c9ae42aCopy full SHA for c9ae42a
scrapinghub/client/utils.py
@@ -131,8 +131,6 @@ def get(self, key):
131
return next(self._origin.apiget(key))
132
133
def set(self, key, value):
134
- if not key or not isinstance(key, six.string_types):
135
- raise InvalidUsage("key should be a string")
136
self._origin.apipost(key, data=json.dumps(value), is_idempotent=True)
137
138
def update(self, values):
0 commit comments