Skip to content

Commit

Permalink
Bump mypy from 1.9.0 to 1.10.1 (#17445)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] committed Jul 16, 2024
1 parent 8389418 commit 79924ae
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 29 deletions.
56 changes: 28 additions & 28 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion tests/util/test_check_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

from contextlib import contextmanager
from os import PathLike
from pathlib import Path
from typing import Generator, Optional, Union
from unittest.mock import patch

Expand All @@ -41,7 +42,7 @@ def __init__(self, version: str):
def version(self) -> str:
return self._version

def locate_file(self, path: Union[str, PathLike]) -> PathLike:
def locate_file(self, path: Union[str, PathLike]) -> Path:
raise NotImplementedError()

def read_text(self, filename: str) -> None:
Expand Down

0 comments on commit 79924ae

Please sign in to comment.