Skip to content

Commit 0fc3f75

Browse files
committed
remove redundant docstring
1 parent 0685de4 commit 0fc3f75

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

synapseclient/models/wiki.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ async def get_async(
8787
synapse_client: Optional["Synapse"] = None,
8888
) -> "WikiOrderHint":
8989
"""
90-
Get the order hint of a wiki page tree asynchronously.
90+
Get the order hint of a wiki page tree.
9191
9292
Arguments:
9393
synapse_client: Optionally provide a Synapse client.
@@ -113,7 +113,7 @@ async def update_async(
113113
synapse_client: Optional["Synapse"] = None,
114114
) -> "WikiOrderHint":
115115
"""
116-
Update the order hint of a wiki page tree asynchronously.
116+
Update the order hint of a wiki page tree.
117117
118118
Arguments:
119119
synapse_client: Optionally provide a Synapse client.
@@ -187,7 +187,7 @@ async def get_async(
187187
synapse_client: Optional["Synapse"] = None,
188188
) -> list:
189189
"""
190-
Get the history of a wiki page asynchronously as a list of WikiHistorySnapshot objects.
190+
Get the history of a wiki page as a list of WikiHistorySnapshot objects.
191191
192192
Arguments:
193193
owner_id: The ID of the owner entity.
@@ -266,7 +266,7 @@ async def get_async(
266266
synapse_client: Optional["Synapse"] = None,
267267
) -> list:
268268
"""
269-
Get the header tree (hierarchy) of wiki pages for an entity asynchronously.
269+
Get the header tree (hierarchy) of wiki pages for an entity.
270270
271271
Arguments:
272272
owner_id: The ID of the owner entity.
@@ -650,7 +650,7 @@ async def delete_async(
650650
synapse_client: Optional["Synapse"] = None,
651651
) -> None:
652652
"""
653-
Delete this wiki page asynchronously.
653+
Delete this wiki page.
654654
655655
Arguments:
656656
synapse_client: Optionally provide a Synapse client.
@@ -677,7 +677,7 @@ async def get_attachment_handles_async(
677677
synapse_client: Optional["Synapse"] = None,
678678
) -> list:
679679
"""
680-
Get the file handles of all attachments on this wiki page asynchronously.
680+
Get the file handles of all attachments on this wiki page.
681681
682682
Arguments:
683683
synapse_client: Optionally provide a Synapse client.
@@ -709,7 +709,7 @@ async def get_attachment_url_async(
709709
synapse_client: Optional["Synapse"] = None,
710710
) -> dict:
711711
"""
712-
Get the URL of a wiki page attachment asynchronously.
712+
Get the URL of a wiki page attachment.
713713
714714
Arguments:
715715
file_name: The name of the file to get.
@@ -748,7 +748,7 @@ async def get_attachment_preview_url_async(
748748
synapse_client: Optional["Synapse"] = None,
749749
) -> dict:
750750
"""
751-
Get the preview URL of a wiki page attachment asynchronously.
751+
Get the preview URL of a wiki page attachment.
752752
753753
Arguments:
754754
file_name: The name of the file to get.
@@ -786,7 +786,7 @@ async def get_markdown_url_async(
786786
synapse_client: Optional["Synapse"] = None,
787787
) -> dict:
788788
"""
789-
Get the markdown URL of this wiki page asynchronously.
789+
Get the markdown URL of this wiki page.
790790
791791
Arguments:
792792
redirect: When set to false, the URL will be returned as text/plain instead of redirecting. Default is False.

0 commit comments

Comments
 (0)