minor fn signature fix
This commit is contained in:
parent
7159a36df8
commit
dc18101118
@ -89,7 +89,7 @@ class MarkdownComponentMap:
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def create_map_fn_var(
|
def create_map_fn_var(
|
||||||
cls, fn_body: str | None = None, fn_args: list | None = None
|
cls, fn_body: str | None = None, fn_args: list[str] | None = None
|
||||||
) -> Var:
|
) -> Var:
|
||||||
"""Create a function Var for the component map.
|
"""Create a function Var for the component map.
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ class MarkdownComponentMap:
|
|||||||
def get_component_map_custom_code(cls) -> str: ...
|
def get_component_map_custom_code(cls) -> str: ...
|
||||||
@classmethod
|
@classmethod
|
||||||
def create_map_fn_var(
|
def create_map_fn_var(
|
||||||
cls, fn_body: str | None = None, fn_args: list | None = None
|
cls, fn_body: str | None = None, fn_args: list[str] | None = None
|
||||||
) -> Var: ...
|
) -> Var: ...
|
||||||
@classmethod
|
@classmethod
|
||||||
def get_fn_args(cls) -> list[str]: ...
|
def get_fn_args(cls) -> list[str]: ...
|
||||||
|
Loading…
Reference in New Issue
Block a user