Add missing urllib.error import

Fixes an unresolved reference
Add missing urllib.error import
This commit is contained in:
Dylan M. Taylor 2021-05-17 21:53:53 -04:00 committed by Dylan Taylor
parent d0bc166e7e
commit 9cae2374a8
3 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,4 @@
import urllib.error
import urllib.request
from .general import *

View File

@ -1,5 +1,6 @@
import json
import ssl
import urllib.error
import urllib.parse
import urllib.request

View File

@ -4,6 +4,7 @@ import json
import re
import ssl
import sys
import urllib.error
import urllib.parse
import urllib.request
from typing import Optional