Fabio Sangiovanni
Fabio Sangiovanni
@grakic Thanks, it works perfectly!
> Not sure if this is related to this issue, but the `mailoutbox` fixture does not match the behavior of `mail.outbox` in my test. It's not collecting sent emails: >...
Strong +1 on this :)
strong +1 on this!
Hi, I get the same mypy error with the following code: ```python from mypy_extensions import TypedDict class Movie(TypedDict): name: str year: int m1 = Movie(name='Blade Runner', year=1982) m2 = Movie(name='Star...