summaryrefslogtreecommitdiff
path: root/git/util.py
diff options
context:
space:
mode:
authorYobmod <yobmod@gmail.com>2021-05-17 13:11:57 +0100
committerYobmod <yobmod@gmail.com>2021-05-17 13:11:57 +0100
commit025fe17da390c410e5bae4d6db0832afbfa26442 (patch)
tree677816fde797686f6ae07923e9a8698231a6fe28 /git/util.py
parent595181da70978ed44983a6c0ca4cb6d982ba0e8b (diff)
downloadgitpython-025fe17da390c410e5bae4d6db0832afbfa26442.tar.gz
add types to index.fun.py
Diffstat (limited to 'git/util.py')
-rw-r--r--git/util.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/git/util.py b/git/util.py
index 581bf877..76aaee49 100644
--- a/git/util.py
+++ b/git/util.py
@@ -377,6 +377,7 @@ def expand_path(p: None, expand_vars: bool = ...) -> None:
@overload
def expand_path(p: PathLike, expand_vars: bool = ...) -> str:
+ # improve these overloads when 3.5 dropped
...