File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -891,16 +891,16 @@ def __init__(self, client: river.Client[Any]):
891891 # the function strings in the branches below, otherwise `dedent`
892892 # will pick our indentation level for normalization, which will
893893 # break the "def" indentation presuppositions.
894- ottd_name = render_literal_type (output_type_type_adapter_name )
894+ output_type_adapter = render_literal_type (output_type_type_adapter_name )
895895 parse_output_method = f"""\
896- lambda x: { ottd_name }
896+ lambda x: { output_type_adapter }
897897 .validate_python(
898898 x # type: ignore[arg-type]
899899 )
900900 """
901- ettd_name = render_literal_type (error_type_type_adapter_name )
901+ error_type_adapter = render_literal_type (error_type_type_adapter_name )
902902 parse_error_method = f"""\
903- lambda x: { ettd_name }
903+ lambda x: { error_type_adapter }
904904 .validate_python(
905905 x # type: ignore[arg-type]
906906 )
You can’t perform that action at this time.
0 commit comments