Browse Source

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

main
みてるぞ 4 weeks ago
parent
commit
6e99da7326
2 changed files with 3 additions and 1 deletions
  1. +1
    -0
      .gitignore
  2. +2
    -1
      eloquent.pyi

+ 1
- 0
.gitignore View File

@@ -0,0 +1 @@
__pycache__

+ 2
- 1
eloquent.pyi View File

@@ -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')



Loading…
Cancel
Save