From 6e99da73264749d6c3e6c0c9a48c32b03412a57f Mon Sep 17 00:00:00 2001 From: miteruzo Date: Thu, 17 Oct 2024 18:57:03 +0900 Subject: [PATCH] =?UTF-8?q?Python=203.10=20=E3=81=AB=E9=81=A9=E5=90=88?= =?UTF-8?q?=E3=81=97=E3=81=9F=E3=81=AE=E3=81=A8=20=5F=5Fpycache=5F=5F=20?= =?UTF-8?q?=E9=99=A4=E5=A4=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + eloquent.pyi | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bee8a64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +__pycache__ diff --git a/eloquent.pyi b/eloquent.pyi index 1ee4937..0ab7167 100644 --- a/eloquent.pyi +++ b/eloquent.pyi @@ -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')