Browse Source

state: use bytes.hex() instead of binascii.hexlify().decode()

pull/4088/head
iomintz 5 years ago
committed by GitHub
parent
commit
755ab28311
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      discord/state.py

3
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 = []

Loading…
Cancel
Save