Skip to content
Closed

test #79

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/PowerPlatform/Dataverse/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ def get_table_info(self, table_schema_name: str) -> Optional[Dict[str, Any]]:
:rtype: :class:`dict` or None

Example:
Retrieve table metadata::
Retrieve table metadata::--
Copy link

Copilot AI Dec 16, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The trailing -- characters appear to be an erroneous addition to the docstring. This syntax doesn't belong in Python documentation and will make the example section incorrectly formatted. Please remove the -- to restore the proper docstring format.

Suggested change
Retrieve table metadata::--
Retrieve table metadata::

Copilot uses AI. Check for mistakes.

info = client.get_table_info("new_MyTestTable")
if info:
Expand Down
Loading