## 🐛 Bug <!-- A clear and concise description of what the bug is. --> We currently strip new lines from each line and always append a new line to each write. This isn't strictly correct Module (check all that applies): * [ ] `torchx.spec` * [ ] `torchx.component` * [ ] `torchx.apps` * [ ] `torchx.runtime` * [x] `torchx.cli` * [x] `torchx.schedulers` * [ ] `torchx.pipelines` * [ ] `torchx.aws` * [ ] `torchx.examples` * [ ] `other` ## To Reproduce ```py from tqdm import tqdm import time for i in tqdm(range(100)): time.sleep(0.03) ```