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.
2 parents 306d419 + c8be3aa commit a957ad2Copy full SHA for a957ad2
planet/api/client.py
@@ -130,6 +130,9 @@ def _params(self, kw):
130
params['_page_size'] = kw['page_size']
131
if 'sort' in kw and kw['sort']:
132
params['_sort'] = ''.join(kw['sort'])
133
+ if 'strict' in kw:
134
+ # This transforms a Python boolean into a JSON boolean
135
+ params['strict'] = json.dumps(kw['strict'])
136
return params
137
138
def create_search(self, request):
0 commit comments