There was an error while loading. Please reload this page.
1 parent 1d0e666 commit e985851Copy full SHA for e985851
1 file changed
git/diff.py
@@ -24,12 +24,12 @@
24
25
from subprocess import Popen
26
27
-Lit_change_type = Literal['A', 'D', 'C', 'M', 'R', 'T']
+Lit_change_type = Literal['A', 'D', 'C', 'M', 'R', 'T', 'U']
28
29
30
def is_change_type(inp: str) -> TypeGuard[Lit_change_type]:
31
# return True
32
- return inp in ['A', 'D', 'C', 'M', 'R', 'T']
+ return inp in ['A', 'D', 'C', 'M', 'R', 'T', 'U']
33
34
# ------------------------------------------------------------------------
35
0 commit comments