We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 316ecb0 commit 7331550Copy full SHA for 7331550
src/pypistats/cli.py
@@ -77,7 +77,7 @@ def _package(value: Any) -> str:
77
try:
78
import tomllib
79
except ImportError:
80
- import tomli as tomllib
+ import tomli as tomllib # type: ignore[import-not-found, no-redef]
81
82
data = tomllib.loads(pyproject_toml.read_text())
83
0 commit comments