aboutsummaryrefslogtreecommitdiff
path: root/setuptools/_vendor/tomli/_types.py
diff options
context:
space:
mode:
Diffstat (limited to 'setuptools/_vendor/tomli/_types.py')
-rw-r--r--setuptools/_vendor/tomli/_types.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/setuptools/_vendor/tomli/_types.py b/setuptools/_vendor/tomli/_types.py
new file mode 100644
index 0000000..d949412
--- /dev/null
+++ b/setuptools/_vendor/tomli/_types.py
@@ -0,0 +1,10 @@
+# SPDX-License-Identifier: MIT
+# SPDX-FileCopyrightText: 2021 Taneli Hukkinen
+# Licensed to PSF under a Contributor Agreement.
+
+from typing import Any, Callable, Tuple
+
+# Type annotations
+ParseFloat = Callable[[str], Any]
+Key = Tuple[str, ...]
+Pos = int