update helper random import

This commit is contained in:
Muzahid 2021-06-24 23:19:00 +05:30
parent c61cc1dd1f
commit 7238b0a2e3
Signed by untrusted user: cis-muzahid
GPG Key ID: 1DC85E7D3AB613EA

View File

@ -2,7 +2,10 @@
import os
import random
from pyelliptic.openssl import OpenSSL
try:
from pyelliptic.openssl import OpenSSL
except ModuleNotFoundError:
from .pyelliptic.openssl import OpenSSL
NoneType = type(None)