fix(python-nextgen): Date query params typo (#15395)

This commit is contained in:
Robert Schweizer
2023-05-03 09:17:51 +02:00
committed by GitHub
parent 4e8d41bd79
commit 0a4648f7a0
2 changed files with 2 additions and 2 deletions

View File

@@ -305,7 +305,7 @@ class QueryApi(object):
if _params.get('date_query') is not None: # noqa: E501
if isinstance(_params['date_query'], datetime):
_query_parame.append(('date_query', _params['date_query'].strftime(self.api_client.configuration.date_format)))
_query_params.append(('date_query', _params['date_query'].strftime(self.api_client.configuration.date_format)))
else:
_query_params.append(('date_query', _params['date_query']))