verigak / progress

Easy to use progress bars for Python
ISC License
1.41k stars 179 forks source link

Spinner.finish() doesn't seem to emit a final newline #51

Closed clintolsen closed 6 years ago

clintolsen commented 6 years ago

The example for the bar shows using finish() when you're done with a progress item. However, I noticed spinner just leaves things hanging. The example doesn't use finish(). I tried it but it seems to be a no-op?

Thanks,

-Clint

verigak commented 6 years ago

Thanks, this was an oversight. The clean up done in d9d40736d608a9dcf5476c5e4c4f7eb2de15fc4b should fix this.

clintolsen commented 6 years ago

Thanks!