mypy-fix for "covid_stats_via_xpath.py" (#4233)

This commit is contained in:
algobytewise 2021-03-19 10:57:32 +05:30 committed by GitHub
parent 4f6a929503
commit 8e488dd53d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,7 @@ more convenient to use in Python web projects (e.g. Django or Flask-based)
from collections import namedtuple
import requests
from lxml import html
from lxml import html # type: ignore
covid_data = namedtuple("covid_data", "cases deaths recovered")