Adds missing urllib.parse for IDE warning of PubMedAPIWrapper (#12808)

Resolves an IDE (PyCharm 2023.2.3 PE) warning around
`urllib.parse.quote`, also enabling CTRL-click
This commit is contained in:
James Braza 2023-11-02 17:27:25 -07:00 committed by GitHub
parent 1b233798a0
commit 88b506b321
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,6 +2,7 @@ import json
import logging
import time
import urllib.error
import urllib.parse
import urllib.request
from typing import Any, Dict, Iterator, List