|
|
|
|
|
by briandw
407 days ago
|
|
Looks good but it has the same issues that i have with mypy. Packages that don't include the type hints blow-up my process. In mypy i've come to terms with strategically ignoring packages or finding a package of type hints.
Mypy is runs cleanly on my project but I get >800 errors with TY, mostly things like: lint:unresolved-import: Cannot resolve imported module `pydantic`
--> vartia/usr_id.py:4:6
|
2 | from typing import Optional, Any
3 | from enum import Enum
4 | from pydantic import BaseModel, ConfigDict looking forward to the release version. |
|