Skip to content

Commit

Permalink
suppress new partial Any errors
Browse files Browse the repository at this point in the history
  • Loading branch information
DetachHead committed Nov 14, 2024
1 parent b3662fc commit f11bc47
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pdm_build.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
from __future__ import annotations

from json import loads
from json import loads # pyright:ignore[reportAny]
from pathlib import Path
from shutil import copy, copyfile, copytree
from typing import TYPE_CHECKING, TypedDict, cast
from shutil import copy, copyfile, copytree # pyright:ignore[reportAny]
from typing import TYPE_CHECKING, TypedDict, cast # pyright:ignore[reportAny]

from nodejs_wheel.executable import npm
from pdm.backend.hooks.base import BuildHookInterface
Expand Down

0 comments on commit f11bc47

Please sign in to comment.