Skip to content

Commit

Permalink
Remove unneeded trailing comma (#427)
Browse files Browse the repository at this point in the history
  • Loading branch information
nipunn1313 authored Sep 19, 2022
1 parent 287af6e commit 1f3c3d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mypy_protobuf/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ def write_grpc_methods(self, service: d.ServiceDescriptorProto, scl_prefix: Sour
") -> {}:{}",
self._output_type(method),
" ..." if not self._has_comments(scl) else "",
),
)
if self._has_comments(scl):
with self._indent():
if not self._write_comments(scl):
Expand Down

0 comments on commit 1f3c3d3

Please sign in to comment.