Python 3.10 に適合したのと __pycache__ 除外

このコミットが含まれているのは:
2024-10-17 18:57:03 +09:00
コミット 6e99da7326
2個のファイルの変更3行の追加1行の削除
+1
ファイルの表示
@@ -0,0 +1 @@
__pycache__
+2 -1
ファイルの表示
@@ -5,7 +5,8 @@
from __future__ import annotations
from typing import Any, Generic, Self, Type, TypeVar, overload
from typing import Any, Generic, Type, TypeVar, overload
from typing_extensions import Self
_ModelT = TypeVar ('_ModelT', bound = 'Model')