mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-03 08:35:53 +00:00
Update comments after # type: ignore
to be compatible with PEP 484
This commit is contained in:
@ -181,7 +181,7 @@ class StringView:
|
||||
next_char = self.get()
|
||||
valid_eof = not next_char or next_char.isspace()
|
||||
if not valid_eof:
|
||||
raise InvalidEndOfQuotedStringError(next_char) # type: ignore - this will always be a string
|
||||
raise InvalidEndOfQuotedStringError(next_char) # type: ignore # this will always be a string
|
||||
|
||||
# we're quoted so it's okay
|
||||
return ''.join(result)
|
||||
|
Reference in New Issue
Block a user