SamuelJansen

Results 3 comments of SamuelJansen

> I oringinally thought that this problem could be solved by just running `deinit()` again (as `init()` was called twice therefore to go back would require two `deinit()` calls) to...

I did a wrapper on colorama in order to make a customized logger For some reason calling `.init()` straight ahead performs worst than calling `.deinit()` first and then `.init()`

I had this problem and I end up doing this: ``` def addSwagger(apiInstance, appInstance): ###- The ugliest thing I ever seen, but thats the way flask_swagger_ui works... documentationUrl = f'{apiInstance.baseUrl}{DOCUMENTATION_ENDPOINT}'...