MCPcopy
hub / github.com/aws/aws-cli / flush

Method flush

awscli/utils.py:57–61  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

55 return getattr(self._stream, item)
56
57 def flush(self):
58 # if stream has not been created yet there is no reason to create it
59 # just to call `flush`
60 if self._stream is not None:
61 return self._stream.flush()
62
63
64class LazyPager:

Calls

no outgoing calls