##// END OF EJS Templates
typing: add the return type hint to pycompat.rangelist()...
Matt Harbison -
r51071:829aa604 default
parent child Browse files
Show More
@@ -149,7 +149,7 b' def maplist(f, *args):'
149 149 return list(map(f, *args))
150 150
151 151
152 def rangelist(*args):
152 def rangelist(*args) -> List[int]:
153 153 return list(range(*args))
154 154
155 155
General Comments 0
You need to be logged in to leave comments. Login now