summaryrefslogtreecommitdiff
path: root/git
diff options
context:
space:
mode:
Diffstat (limited to 'git')
-rw-r--r--git/py.typed0
-rw-r--r--git/types.py6
2 files changed, 6 insertions, 0 deletions
diff --git a/git/py.typed b/git/py.typed
new file mode 100644
index 00000000..e69de29b
--- /dev/null
+++ b/git/py.typed
diff --git a/git/types.py b/git/types.py
new file mode 100644
index 00000000..dc44c123
--- /dev/null
+++ b/git/types.py
@@ -0,0 +1,6 @@
+import os # @UnusedImport ## not really unused, is in type string
+from typing import Union, Any
+
+
+TBD = Any
+PathLike = Union[str, 'os.PathLike[str]']