Skip to content

Commit cda628f

Browse files
committed
non-abreviated names
1 parent cb3aac9 commit cda628f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/replit_river/codegen/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
)

0 commit comments

Comments
 (0)