We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fb362f commit d73d18cCopy full SHA for d73d18c
google/api_core/grpc_helpers.py
@@ -117,9 +117,8 @@ def __next__(self) -> P:
117
if hasattr(self, "_stored_first_result"):
118
result = self._stored_first_result
119
del self._stored_first_result
120
- return result
121
- result = next(self._wrapped)
122
-
+ else:
+ result = next(self._wrapped)
123
logging_enabled = _LOGGER.isEnabledFor(logging.DEBUG)
124
if logging_enabled: # pragma: NO COVER
125
if isinstance(result, proto.Message):
0 commit comments