Skip to content

Commit

Permalink
refactor(template_transform): use keyword-only arguments (#9575)
Browse files Browse the repository at this point in the history
  • Loading branch information
laipz8200 authored Oct 22, 2024
1 parent 2e657b7 commit ac24300
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def _run(self) -> NodeRunResult:

@classmethod
def _extract_variable_selector_to_variable_mapping(
cls, graph_config: Mapping[str, Any], node_id: str, node_data: TemplateTransformNodeData
cls, *, graph_config: Mapping[str, Any], node_id: str, node_data: TemplateTransformNodeData
) -> Mapping[str, Sequence[str]]:
"""
Extract variable selector to variable mapping
Expand Down

0 comments on commit ac24300

Please sign in to comment.