Skip to content

Commit

Permalink
chore: ignore missing
Browse files Browse the repository at this point in the history
  • Loading branch information
Lancetnik committed Mar 6, 2024
1 parent 0107125 commit 51c1de4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fast_depends/library/serializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ def __call__(self, options: Dict[str, Any]) -> Dict[str, Any]:
def get_aliases(self) -> Tuple[str, ...]:
return ()

def response(self, value: Any) -> Any:
def response(self, value: Any) -> Any: # pragma: no cover
return value
2 changes: 1 addition & 1 deletion fast_depends/use.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
P = ParamSpec("P")
T = TypeVar("T")

if TYPE_CHECKING:
if TYPE_CHECKING: # pragma: no cover
from fast_depends.core import CallModel
from fast_depends.library.serializer import Serializer

Expand Down

0 comments on commit 51c1de4

Please sign in to comment.