Andrew Shogren

Results 2 comments of Andrew Shogren

This looks like the same cause/resolution as https://github.com/thiagopradi/octopus/issues/342

Ran into this as well. Same context. Simplest workaround is defining a method like the following as a thin wrapper: ```python def compile_pattern(s: Union[str, bytes]) -> re.Pattern: return re.compile(s) @attr.s...