@@ -984,6 +984,7 @@ def delete_samples(self, hash_input):
984
984
985
985
self .__raise_on_error (response )
986
986
987
+
987
988
return response
988
989
989
990
def check_sample_removal_status_v2 (self , task_id ):
@@ -1812,8 +1813,8 @@ def advanced_search_v3(self, query_string, ticloud=False, start_search_date=None
1812
1813
Query string example:
1813
1814
'av-count:5 available:TRUE'
1814
1815
1815
- :param query_string: query string
1816
- :type query_string: str
1816
+ :param query_string: search query
1817
+ :type query_string: str or dict
1817
1818
:param ticloud: show only cloud results
1818
1819
:type ticloud: bool
1819
1820
:param start_search_date: the starting date for the search; this parameter represents the later
@@ -1834,9 +1835,6 @@ def advanced_search_v3(self, query_string, ticloud=False, start_search_date=None
1834
1835
:return: response
1835
1836
:rtype: requests.Response
1836
1837
"""
1837
- if not isinstance (query_string , str ):
1838
- raise WrongInputError ("The search query must be a string." )
1839
-
1840
1838
if not isinstance (ticloud , bool ):
1841
1839
raise WrongInputError ("ticloud parameter must be boolean." )
1842
1840
@@ -1888,8 +1886,8 @@ def advanced_search_v3_aggregated(self, query_string, ticloud=False, start_searc
1888
1886
Query string example:
1889
1887
'av-count:5 available:TRUE'
1890
1888
1891
- :param query_string: query string
1892
- :type query_string: str
1889
+ :param query_string: search query
1890
+ :type query_string: str or dict
1893
1891
:param ticloud: show only cloud results
1894
1892
:type ticloud: bool
1895
1893
:param start_search_date: the starting date for the search; this parameter represents the later
0 commit comments