Skip to content

Commit 62e8653

Browse files
Merge pull request #71 from vpriyankaprabhu/master
Release 3.1.11
2 parents 2500f06 + 7d3c34e commit 62e8653

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ibmpairs/query.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6650,7 +6650,7 @@ async def async_submit(self,
66506650
if ((self._spatial is not None) and (self._spatial.type is not None)):
66516651
if self._spatial.type.lower() in ['point']:
66526652
if ((self._batch is None) or (self._batch.lower() == 'false') or (self._batch == '') or (self._batch is False)):
6653-
if ((self._output_type is None) or ((self._output_type.lower() != 'json') and (self._output_type.lower() != 'csv'))):
6653+
if (self._output_type is not None) and (self._output_type.lower() not in ['json', 'csv']):
66546654
self._output_type = 'json'
66556655

66566656
query_json = query.to_dict_query_post()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup
33

44
# define package version
5-
version = '3.1.10'
5+
version = '3.1.11'
66
# ... and record it for ibmpairs package
77
with open("ibmpairs/version.py", 'w') as f:
88
f.write('# generated by setup.py\nversion = "{}"\n'.format(version))

0 commit comments

Comments
 (0)