1.15.4.dev2+g3e3ce2426

flytekit.interactive.vscode_lib.config

Directory

Classes

Class Description
VscodeConfig VscodeConfig is the config contains default URLs of the VSCode server and extension remote paths.

flytekit.interactive.vscode_lib.config.VscodeConfig

VscodeConfig is the config contains default URLs of the VSCode server and extension remote paths.

def VscodeConfig(
    code_server_remote_paths: typing.Optional[typing.Dict[str, str]],
    code_server_dir_names: typing.Optional[typing.Dict[str, str]],
    extension_remote_paths: typing.Optional[typing.List[str]],
):
Parameter Type
code_server_remote_paths typing.Optional[typing.Dict[str, str]]
code_server_dir_names typing.Optional[typing.Dict[str, str]]
extension_remote_paths typing.Optional[typing.List[str]]

Methods

Method Description
add_extensions() Add additional extensions to the extension_remote_paths list

add_extensions()

def add_extensions(
    extensions: typing.Union[str, typing.List[str]],
):

Add additional extensions to the extension_remote_paths list.

Parameter Type
extensions typing.Union[str, typing.List[str]]