mirror of
https://github.com/facebook/sapling.git
synced 2024-12-28 07:33:10 +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
10 lines
335 B
Python
10 lines
335 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 localrepo, ui as uimod
|
|
|
|
def uisetup(ui: uimod.ui) -> None: ...
|
|
def reposetup(ui: uimod.ui, repo: localrepo.localrepository) -> None: ...
|