We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 113bb15 commit c71fba9Copy full SHA for c71fba9
1 file changed
src/PowerPlatform/Dataverse/client.py
@@ -526,11 +526,11 @@ def list_tables(self) -> list[dict[str, Any]]:
526
:rtype: :class:`list` of :class:`dict`
527
528
Example:
529
- List all non-private tables and print their logical names::
530
-
531
- tables = client.list_tables()
532
- for table in tables:
533
- print(table["LogicalName"])
+ List all non-private tables and print their logical names::
+
+ tables = client.list_tables()
+ for table in tables:
+ print(table["LogicalName"])
534
"""
535
with self._scoped_odata() as od:
536
return od._list_tables()
0 commit comments