view mercurial/__main__.py @ 51873:0afd58c72175

tests: enable pytype checking on `mercurial/bundlerepo.py`
author Matt Harbison <matt_harbison@yahoo.com>
date Wed, 18 Sep 2024 21:00:20 -0400
parents 1c5810ce737e
children
line wrap: on
line source

from __future__ import annotations


def run():
    from . import demandimport

    with demandimport.tracing.log('hg script'):
        demandimport.enable()
        from . import dispatch

        dispatch.run()


if __name__ == '__main__':
    run()