git.schokokeks.org
Repositories
Help
Report an Issue
derivepassphrase.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
032d431
Branches
Tags
documentation-tree
master
unstable/modularize-and-refactor-test-machinery
unstable/ssh-agent-socket-providers
wishlist
0.1.0
0.1.1
0.1.2
0.1.3
0.2.0
0.3.0
0.3.1
0.3.2
0.3.3
0.4.0
0.5.1
0.5.2
derivepassphrase.git
other-stubs
tomli.pyi
Fix usage of `mypy --python-version=3.9` and friends
Marco Ricci
commited
032d431
at 2025-01-16 01:28:57
tomli.pyi
Blame
History
Raw
# SPDX-FileCopyrightText: 2025 Marco Ricci <software@the13thletter.info> # # SPDX-License-Identifier: Zlib # # Minimal stub file for the part of the tomli package we actually use. # Included here so that mypy will find the stubs regardless of whether # the correct hatch environment is used. from collections.abc import Callable from typing import IO, Any def load( __fp: IO[bytes], /, *, parse_float: Callable[..., Any] = ... ) -> dict[str, Any]: ...