##// END OF EJS Templates
typing: switch an argument type to the generic form...
Matt Harbison -
r47509:8f8fce2d stable
parent child Browse files
Show More
@@ -51,6 +51,7 b' if pycompat.TYPE_CHECKING:'
51 51 Dict,
52 52 List,
53 53 Optional,
54 Sequence,
54 55 Tuple,
55 56 )
56 57
@@ -723,7 +724,7 b' class walkopts(object):'
723 724
724 725
725 726 def parseopts(ui, pats, opts):
726 # type: (Any, List[bytes], Dict[bytes, Any]) -> walkopts
727 # type: (Any, Sequence[bytes], Dict[bytes, Any]) -> walkopts
727 728 """Parse log command options into walkopts
728 729
729 730 The returned walkopts will be passed in to getrevs() or makewalker().
General Comments 0
You need to be logged in to leave comments. Login now