Skip to content

Commit

Permalink
Merge pull request #307 from gerlero/typing
Browse files Browse the repository at this point in the history
Fix type error
  • Loading branch information
gerlero authored Dec 14, 2024
2 parents 29e146b + 4ec67eb commit 2ecb721
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion foamlib/_cases/_async.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ async def _run(
async def _rmtree(
path: os.PathLike[str] | str, *, ignore_errors: bool = False
) -> None:
await aioshutil.rmtree(path, ignore_errors=ignore_errors)
await aioshutil.rmtree(path, ignore_errors=ignore_errors) # type: ignore [call-arg]

@staticmethod
async def _copytree(
Expand Down

0 comments on commit 2ecb721

Please sign in to comment.