diff options
| author | JW <[email protected]> | 2017-07-04 23:16:16 +0300 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-07-04 23:16:16 +0300 |
| commit | c220b3faa408265bdc05ab617b84570dc340f191 (patch) | |
| tree | 588afbfb2c35ba20ee3ed572f786de149860b387 | |
| parent | Rename AsyncIterator.get to next to prevent shadowing. (diff) | |
| download | discord.py-c220b3faa408265bdc05ab617b84570dc340f191.tar.xz discord.py-c220b3faa408265bdc05ab617b84570dc340f191.zip | |
Fixed a typo in calls.py
Suggested by libffi-dev-on on Discord. Changed Optiona into Optional
| -rw-r--r-- | discord/calls.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/calls.py b/discord/calls.py index f6253d00..0ed5f237 100644 --- a/discord/calls.py +++ b/discord/calls.py @@ -148,7 +148,7 @@ class GroupCall: Returns -------- - Optiona[:class:`VoiceState`] + Optional[:class:`VoiceState`] The voice state associated with this user. """ |