Arjan Keeman

Results 29 comments of Arjan Keeman

It surely can be done, but it'll be quite nasty. Most of the infrastructure and configuration has to be done twice, as it should work on the same field with...

That would leave me with a way to flag a file for duplication, requires a separate event listener, and extension of the storage. So I think that would be quite...

In my case I lazily was creating a ` ToastNotifier` instance for each notification. Then `RegisterClass` tells me that the registration has already been done, so it can't register again....

https://github.com/requests/requests-oauthlib/pull/357 breaks this. Oauthlib 3.x doesn't accept `None` for `include_client_id` params, where 2.x did, and this repo relies on that.

Quick workaround is to add this to your code ([ref](https://github.com/tornadoweb/tornado/issues/2608#issuecomment-619524992)) ```python import sys, asyncio if sys.version_info >= (3, 8) and sys.platform.lower().startswith("win"): asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy()) ```

@hakancelik96 Please review again

Made the `setup.cfg` loader and possible other loaders simpler by parsing boolean values from string elsewhere and added correct syntax highlighting in `README.rst`. @hakancelik96 Please review again Note that the...

@hakancelik96 I see. Thanks for sharing! I'll have a look. @myint Have you got any feedback/other thoughts? I think that not having the ability to load configuration from a file...

@myint have you any feedback or time to merge?