Skip to content

Commit

Permalink
fix lints ?
Browse files Browse the repository at this point in the history
  • Loading branch information
Carreau committed Oct 31, 2023
1 parent 6f6fd63 commit 70c2f02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion papyri/render.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
try:
import minify_html
except ModuleNotFoundError:
minify_html = None
minify_html = None # type: ignore[assignment]

from . import config as default_config
from . import take2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,5 +51,5 @@ filterwarnings = "ignore:The module numpy.dual.*:DeprecationWarning"
Home = "https://github.com/Carreau/papyri"

[tool.mypy]
python_version = 3.10
python_version = '3.10'
ignore_missing_imports = true

0 comments on commit 70c2f02

Please sign in to comment.