mercurial/phases.py
changeset 51290 f4a0806081f2
parent 51288 8b2ea2246a5f
child 51401 8f2ea3fa50fd
equal deleted inserted replaced
51289:7bd7fcc711f2 51290:f4a0806081f2
   129     requirements,
   129     requirements,
   130     smartset,
   130     smartset,
   131     txnutil,
   131     txnutil,
   132     util,
   132     util,
   133 )
   133 )
   134 
       
   135 # keeps pyflakes happy
       
   136 assert [
       
   137     Any,
       
   138     Callable,
       
   139     Dict,
       
   140     Iterable,
       
   141     List,
       
   142     Optional,
       
   143     Set,
       
   144     Tuple,
       
   145 ]
       
   146 
   134 
   147 Phaseroots = Dict[int, Set[bytes]]
   135 Phaseroots = Dict[int, Set[bytes]]
   148 
   136 
   149 if typing.TYPE_CHECKING:
   137 if typing.TYPE_CHECKING:
   150     from . import (
   138     from . import (