Skip to content
This repository was archived by the owner on Jun 9, 2025. It is now read-only.

Commit 2e7d92f

Browse files
committed
Fix merge conflict
1 parent 15cadae commit 2e7d92f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/betterproto2_compiler/templates/template.py.j2

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,7 @@ class {{ service.py_name }}Stub(betterproto2.ServiceStub):
106106
{%- endif -%}
107107
{%- else -%}
108108
{# Client streaming: need a request iterator instead #}
109-
<<<<<<< HEAD
110-
, messages: "{{ output_file.settings.typing_compiler.union(output_file.settings.typing_compiler.async_iterable(method.py_input_message_type), output_file.settings.typing_compiler.iterable(method.py_input_message_type)) }}"
111-
=======
112-
, {{ method.py_input_message_param }}_iterator: "AsyncIterable[{{ method.py_input_message_type }}] | Iterable[{{ method.py_input_message_type }}]"
113-
>>>>>>> b85a5cc (Remove typing compiler)
109+
, message: "AsyncIterable[{{ method.py_input_message_type }}] | Iterable[{{ method.py_input_message_type }}]"
114110
{%- endif -%}
115111
,
116112
*

0 commit comments

Comments
 (0)