Skip to content

Commit f5f7dd2

Browse files
Lingling PengLingling Peng
authored andcommitted
change the rowset function to private
1 parent 58e67d1 commit f5f7dd2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

synapseclient/models/mixins/table_components.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def _query_table_next_page(
300300
return QueryResultBundle.fill_from_dict(data=result)
301301

302302

303-
async def query_table_row_set(
303+
async def _query_table_row_set(
304304
query: str,
305305
synapse: Synapse,
306306
limit: int = None,
@@ -388,7 +388,7 @@ async def _table_query(
388388
client = Synapse.get_client(synapse_client=synapse)
389389

390390
if results_as.lower() == "rowset":
391-
return await query_table_row_set(query=query, synapse=client, **kwargs)
391+
return await _query_table_row_set(query=query, synapse=client, **kwargs)
392392

393393
elif results_as.lower() == "csv":
394394
result, csv_path = await _query_table_csv(

0 commit comments

Comments
 (0)