mercurial/logcmdutil.py
changeset 46794 e2f7b2695ba1
parent 46675 6f4a481f182a
parent 46682 8f8fce2dd594
child 46819 d4ba4d51f85f
--- a/mercurial/logcmdutil.py	Tue Mar 02 00:05:22 2021 +0100
+++ b/mercurial/logcmdutil.py	Thu Mar 18 18:24:59 2021 -0400
@@ -52,6 +52,7 @@
         Dict,
         List,
         Optional,
+        Sequence,
         Tuple,
     )
 
@@ -754,7 +755,7 @@
 
 
 def parseopts(ui, pats, opts):
-    # type: (Any, List[bytes], Dict[bytes, Any]) -> walkopts
+    # type: (Any, Sequence[bytes], Dict[bytes, Any]) -> walkopts
     """Parse log command options into walkopts
 
     The returned walkopts will be passed in to getrevs() or makewalker().