Karataev Pavel
Karataev Pavel
I tried using some `beartype.vale.Is`, but failed many times because of conflicts with `annotated_types`. I really didn't want to create separate `Annotated` typed for each library (`beartype` & `pydantic`), so...
```python import operator from functools import partial from typing import Annotated # HINT: a & b is NOT reversed in operator.le, so don't use this in real code @beartype def...
ruff 0.6.8 i see something like this: ```json { "src/view.py": [ "src/models/User.py", ], "src/code.py": [ "src/models/user.py", ], } ``` content of `src/models/__init__.py`: ```python from models.user import User __all__ = ['User']...