mercurial/logcmdutil.py
branchstable
changeset 46682 8f8fce2dd594
parent 46549 9842c00f0252
child 46794 e2f7b2695ba1
--- a/mercurial/logcmdutil.py	Thu Mar 11 21:25:28 2021 -0500
+++ b/mercurial/logcmdutil.py	Thu Mar 11 17:02:28 2021 -0500
@@ -51,6 +51,7 @@
         Dict,
         List,
         Optional,
+        Sequence,
         Tuple,
     )
 
@@ -723,7 +724,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().