Browse Source
state: use bytes.hex() instead of binascii.hexlify().decode()
pull/4088/head
iomintz
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
2 deletions
-
discord/state.py
|
|
@ -36,7 +36,6 @@ import inspect |
|
|
|
import gc |
|
|
|
|
|
|
|
import os |
|
|
|
import binascii |
|
|
|
|
|
|
|
from .guild import Guild |
|
|
|
from .activity import BaseActivity |
|
|
@ -135,7 +134,7 @@ class ConnectionState: |
|
|
|
gc.collect() |
|
|
|
|
|
|
|
def get_nonce(self): |
|
|
|
return binascii.hexlify(os.urandom(16)).decode('ascii') |
|
|
|
return os.urandom(16).hex() |
|
|
|
|
|
|
|
def process_listeners(self, listener_type, argument, result): |
|
|
|
removed = [] |
|
|
|