mirror of
https://github.com/facebook/sapling.git
synced 2024-12-29 08:02:24 +03:00
46767d9723
Summary: There isn't really much to annotate here, but this lets us eliminate a couple `pyre-fixme` comments about not being able to find these modules during type checkign. Reviewed By: singhsrb Differential Revision: D20550267 fbshipit-source-id: 271f8406890787c0613294a9047365fdebcdeda1
9 lines
250 B
Python
9 lines
250 B
Python
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This software may be used and distributed according to the terms of the
|
|
# GNU General Public License version 2.
|
|
|
|
from edenscm.mercurial import ui as uimod
|
|
|
|
def uisetup(ui: uimod.ui) -> None: ...
|