Valid code: ```python f = ctx.open(path, mask) f.write(content) f.close() ``` Proposal: ```python with ctx.open(path, mask) as f: f.write(content) ```