zwx00
zwx00
Is MyPy type checking supported at all? Any model property I try to access on a Djantic model is detected as non-existent by mypy. Is this resolvable? Maybe I can...
Hi, thanks for creating this project, I love how elegantly it addresses the issues associated with bootstraping simnets. It's been a while since anything was committed to this project and...
Thanks for creating this. It's the best python openai wrapper on the market and I tried a few. Do you plan to add async support? It would be especially useful...
Hi, thanks for developing this. We're working in an async python environment and would like to see this library support async operations. Currently using shotstack apis requires us to use...
**Describe the bug** Trying to assign None to a field that has `null=True` gives a type error. **To Reproduce** ``` import tortoise from tortoise import fields class Test(tortoise.Model): id =...
# Bug report ## What's wrong ```python from returns.result import Failure, Success, safe @safe def div(first_number: int, second_number: int) -> int: return first_number // second_number def test_div() -> str: match...