view mercurial/__main__.py @ 51886:e59e1d8d29d2

vfs: do minor copyediting on comments and doc strings These were flagged by PyCharm, so clear them from the gutter.
author Matt Harbison <matt_harbison@yahoo.com>
date Fri, 20 Sep 2024 12:15:08 -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()