Browse Source
Fix typos in some View methods' docstrings
pull/7736/head
chromacoat dreamkey
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
0 deletions
-
discord/ui/view.py
|
|
@ -254,8 +254,10 @@ class View: |
|
|
|
|
|
|
|
def add_item(self, item: Item[Any]) -> Self: |
|
|
|
"""Adds an item to the view. |
|
|
|
|
|
|
|
This function returns the class instance to allow for fluent-style |
|
|
|
chaining. |
|
|
|
|
|
|
|
Parameters |
|
|
|
----------- |
|
|
|
item: :class:`Item` |
|
|
@ -284,6 +286,7 @@ class View: |
|
|
|
|
|
|
|
def remove_item(self, item: Item[Any]) -> Self: |
|
|
|
"""Removes an item from the view. |
|
|
|
|
|
|
|
This function returns the class instance to allow for fluent-style |
|
|
|
chaining. |
|
|
|
|
|
|
@ -303,6 +306,7 @@ class View: |
|
|
|
|
|
|
|
def clear_items(self) -> Self: |
|
|
|
"""Removes all items from the view. |
|
|
|
|
|
|
|
This function returns the class instance to allow for fluent-style |
|
|
|
chaining. |
|
|
|
""" |
|
|
|