Flynn

Results 35 comments of Flynn

Can you provide an example of how you are using it?

The duplicates come from this "default" log handler that gets created in the mode lib: https://github.com/ask/mode/blob/a104009f0c96790b9f6140179b4968da07a38c81/mode/utils/logging.py#L463 If you change the line to ``` 'handlers': [], ``` they go away.

With the way it's written you'd have to patch it out. I do something like this: ```python # patch.py import logging import logging.config from typing import IO from typing import...

As far as implementation goes, I'm wondering if the PR by @Frassle would help my issue with respect to module support. As an example, suppose I have a file structure...

One clarification: I see you modified the module value; Is `__main__` added implicitly to the module path?