Add return type hint for some functions

This commit is contained in:
Harshal Laheri
2022-07-15 09:45:42 +05:30
committed by GitHub
parent e0341c9ef2
commit 20d3871290
6 changed files with 17 additions and 15 deletions

View File

@ -233,7 +233,7 @@ class VoiceClient(VoiceProtocol):
secret_key: List[int]
ssrc: int
def __init__(self, client: Client, channel: abc.Connectable):
def __init__(self, client: Client, channel: abc.Connectable) -> None:
if not has_nacl:
raise RuntimeError("PyNaCl library needed in order to use voice")