##// END OF EJS Templates
debugcommands: suppress import errors for pytype...
Augie Fackler -
r44102:a9b14ef7 default
parent child Browse files
Show More
@@ -1561,7 +1561,7 b' def debuginstall(ui, **opts):'
1561 1561 err = None
1562 1562 try:
1563 1563 if cext:
1564 from .cext import (
1564 from .cext import ( # pytype: disable=import-error
1565 1565 base85,
1566 1566 bdiff,
1567 1567 mpatch,
@@ -1571,7 +1571,7 b' def debuginstall(ui, **opts):'
1571 1571 # quiet pyflakes
1572 1572 dir(bdiff), dir(mpatch), dir(base85), dir(osutil)
1573 1573 if rustext:
1574 from .rustext import (
1574 from .rustext import ( # pytype: disable=import-error
1575 1575 ancestor,
1576 1576 dirstate,
1577 1577 )
General Comments 0
You need to be logged in to leave comments. Login now