Skip to content

Commit ae1d40c

Browse files
committed
feat: doc updated
1 parent 2d5ccbd commit ae1d40c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

datashield/api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ def variables(self, table: str = None, tables: dict = None) -> dict:
203203
204204
:param table: The default name of the table to list variables for
205205
:param tables: The name of the table to list variables for, per server name. If not defined, 'table' is used.
206-
:return: The available variable names from the data repository, for a given table, per remote server name
206+
:return: The available variables from the data repository, for a given table, per remote server name
207207
"""
208208
rval = {}
209209
for conn in self.conns:

datashield/interface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ def list_table_variables(self, table: str) -> list:
228228
List available variables for a given table from the data repository.
229229
230230
:param table: The name of the table to list variables for
231-
:return: The list of available variable names for the given table
231+
:return: The list of available variables for the given table
232232
"""
233233
raise NotImplementedError("DSConnection function not available")
234234

0 commit comments

Comments
 (0)