eddebc

Results 3 comments of eddebc

To add onto okamop's answer; According to Flower's [Docker page](https://hub.docker.com/r/mher/flower) ``` Important Please note that from version 1.0.1 Flower uses Celery 5 and has to be invoked in the same...

Found a workaround from some other [issue](https://github.com/spyder-ide/spyder/issues/7096#issuecomment-449655308). ```python import nest_asyncio nest_asyncio.apply() ``` at the top of the code.

That is because Windows puts carriage return and line feed (\r\n) for each new line, e.g. dos file format. You can confirm this by probing the file and finding \x0D...