mirror of
https://github.com/facebook/sapling.git
synced 2024-12-25 05:53:24 +03:00
ad0c50a5cb
Summary: The issues were found by pyre with some type stubs generated via pytype: python36 -m pytype edenscm --no-report-errors -j 30 I didn't include the pytype generated stubs because most of them are `Any`. I'm trying to see if we can get something cleaner. Reviewed By: markbt Differential Revision: D19672435 fbshipit-source-id: c57f2ad3a981ddd4a3a267ff1c00e7bdb71e65ca
9 lines
226 B
Python
9 lines
226 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 typing import Any
|
|
|
|
def __getattr__(name) -> Any: ...
|