Conversation
| return grpc_message; | ||
| // Just to check if CI passes | ||
| return std::move(grpc_message); |
There was a problem hiding this comment.
This is added to make the CI pass. Will revert this after CI passes.
sreenithi
left a comment
There was a problem hiding this comment.
LGTM.
A little unrelated, but while reviewing, I found that we have this black.toml file where we have missed updating the supported Python versions so far. We can either update it in this PR itself as part of fixing black or have a separate PR later to do it.
e12937e to
a037b0d
Compare
Thanks. Will create another PR for that. |
b2577e0 to
de097d3
Compare
de097d3 to
c92084b
Compare
c92084b to
8c03b09
Compare
sergiitk
left a comment
There was a problem hiding this comment.
LGTM - a few things can be fixed in a separate PR.
| default_initializer: str = ( # If non-empty, this will be used as the default initialization of this field | ||
| default_initializer: ( | ||
| str | ||
| ) = ( # If non-empty, this will be used as the default initialization of this field |
There was a problem hiding this comment.
We should probably just move these comments up one level. But in a separate PR.
| :path: /foo/bar | ||
| content-type: application/grpc |
There was a problem hiding this comment.
I'm pretty sure the indent in front of headers is on purpose - this indicates <code> block.
### Description * Upgrade Black to use the latest version. [Pypi-Black (25.1.0)](https://pypi.org/project/black/) * Run `black` to reformat files to make the sanity tests pass in CI **Note - all the file changes are by `black` command** except for the black version bump which is https://github.com/grpc/grpc/pull/39774/files#diff-0512cc461bc04ba96303b81398cc5926bd16e120cbe48decd0c44ea0a8fb76e6R36 ### Testing CI Closes grpc#39774 PiperOrigin-RevId: 769640677
…39820) 1. Follow up on comments in grpc#39774. 2. Fix poorly formatted multiple assignment statements in src/python/grpcio/grpc/_channel.py (from the initial black migration). Closes grpc#39820 COPYBARA_INTEGRATE_REVIEW=grpc#39820 from sergiitk:python-minor-syntax-improvements 0d7ac57 PiperOrigin-RevId: 771200864
### Description * Upgrade Black to use the latest version. [Pypi-Black (25.1.0)](https://pypi.org/project/black/) * Run `black` to reformat files to make the sanity tests pass in CI **Note - all the file changes are by `black` command** except for the black version bump which is https://github.com/grpc/grpc/pull/39774/files#diff-0512cc461bc04ba96303b81398cc5926bd16e120cbe48decd0c44ea0a8fb76e6R36 ### Testing CI Closes grpc#39774 PiperOrigin-RevId: 769640677
…39820) 1. Follow up on comments in grpc#39774. 2. Fix poorly formatted multiple assignment statements in src/python/grpcio/grpc/_channel.py (from the initial black migration). Closes grpc#39820 COPYBARA_INTEGRATE_REVIEW=grpc#39820 from sergiitk:python-minor-syntax-improvements 0d7ac57 PiperOrigin-RevId: 771200864
Description
blackto reformat files to make the sanity tests pass in CINote - all the file changes are by
blackcommand except for the black version bump which ishttps://github.com/grpc/grpc/pull/39774/files#diff-0512cc461bc04ba96303b81398cc5926bd16e120cbe48decd0c44ea0a8fb76e6R36
Testing
CI