Fixes Support for Python3.10

This commit is contained in:
2025-04-09 23:19:29 -03:00
parent 1e59268cd3
commit eb9427c72e

View File

@@ -1,5 +1,6 @@
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
from typing import Generic, Self, TypeVar from typing import Generic, TypeVar
from typing_extensions import Self
from pydantic import Field from pydantic import Field