| 921 | |
| 922 | |
| 923 | class OnBodyFileObjWriter: |
| 924 | def __init__(self, fileobj): |
| 925 | self._fileobj = fileobj |
| 926 | |
| 927 | def __call__(self, chunk, **kwargs): |
| 928 | self._fileobj.write(chunk) |
| 929 | |
| 930 | |
| 931 | class _S3ArnParamHandler: |
no outgoing calls
no test coverage detected