fixes conflicts between two distinct Request classes.
from urllib.request import Request, urlopen # this one has a Request from urllib
from .image import * # noqa: F403 # this one has a Request from fastapi
....
# and now this is using request from fastapi, not urllib
request = Request(url, headers=TEMP_HEADERS)
fixes conflicts between two distinct Request classes.