0.1.dev2184+g1e0cbe7.d20250401
flytekit.exceptions.utils
Directory
Methods
Variables
Property |
Type |
Description |
SOURCE_CODE |
str |
|
Methods
annotate_exception_with_code()
def annotate_exception_with_code(
exception: flytekit.exceptions.user.FlyteUserException,
fn: typing.Callable,
param_name: typing.Optional[str],
) -> flytekit.exceptions.user.FlyteUserException
Annotate the exception with the source code, and will be printed in the rich panel.
Parameter |
Type |
exception |
flytekit.exceptions.user.FlyteUserException |
fn |
typing.Callable |
param_name |
typing.Optional[str] |
get_source_code_from_fn()
def get_source_code_from_fn(
fn: typing.Callable,
param_name: typing.Optional[str],
) -> (<class 'str'>, <class 'int'>)
Get the source code of the function and the column offset of the parameter defined in the input signature.
Parameter |
Type |
fn |
typing.Callable |
param_name |
typing.Optional[str] |