Skip to content

Commit

Permalink
Modify stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
Hind-M committed Apr 3, 2023
1 parent f03afb3 commit 2d5b468
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions libmambapy/libmambapy/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,14 @@ class Context:
def offline(self, arg0: bool) -> None:
pass
@property
def output_info(self) -> Context.OutputInfo:
"""
:type: Context.OutputInfo
"""
@output_info.setter
def output_info(self, arg0: Context.OutputInfo) -> None:
pass
@property
def pkgs_dirs(self) -> typing.List[Path]:
"""
:type: typing.List[Path]
Expand All @@ -629,22 +637,6 @@ class Context:
def platform(self, arg0: str) -> None:
pass
@property
def remote_fetch_info(self) -> RemoteFetchInfo:
"""
:type: RemoteFetchInfo
"""
@remote_fetch_info.setter
def remote_fetch_info(self, arg0: RemoteFetchInfo) -> None:
pass
@property
def output_info(self) -> OutputInfo:
"""
:type: OutputInfo
"""
@output_info.setter
def output_info(self, arg0: OutputInfo) -> None:
pass
@property
def proxy_servers(self) -> typing.Dict[str, str]:
"""
:type: typing.Dict[str, str]
Expand All @@ -653,6 +645,14 @@ class Context:
def proxy_servers(self, arg0: typing.Dict[str, str]) -> None:
pass
@property
def remote_fetch_info(self) -> Context.RemoteFetchInfo:
"""
:type: Context.RemoteFetchInfo
"""
@remote_fetch_info.setter
def remote_fetch_info(self, arg0: Context.RemoteFetchInfo) -> None:
pass
@property
def root_prefix(self) -> Path:
"""
:type: Path
Expand Down

0 comments on commit 2d5b468

Please sign in to comment.