diff -r 6b52cffd8d0a -r e2f7b2695ba1 mercurial/logcmdutil.py --- 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().