1
0

use certifi directly instead of requests

This commit is contained in:
SomberNight
2018-12-13 23:11:59 +01:00
parent c09ac41b27
commit 78f5afff74
6 changed files with 11 additions and 10 deletions

View File

@@ -33,7 +33,7 @@ from collections import defaultdict
import aiorpcx
from aiorpcx import RPCSession, Notification
import requests
import certifi
from .util import PrintError, ignore_exceptions, log_exceptions, bfh, SilentTaskGroup
from . import util
@@ -49,7 +49,7 @@ if TYPE_CHECKING:
from .network import Network
ca_path = requests.certs.where()
ca_path = certifi.where()
class NotificationSession(RPCSession):