diff --git a/pyproject.toml b/pyproject.toml index 97c24ae..b55f3de 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "yamt" -version = "0.1.4.4" +version = "0.1.4.5" description = "yet another monkey toolkit" authors = ["lightmanLP ", "mikk357 "] license = "MIT" diff --git a/yamt/misc.py b/yamt/misc.py index 1534112..c0d572f 100644 --- a/yamt/misc.py +++ b/yamt/misc.py @@ -215,7 +215,7 @@ class IterativeRandomizer(Generic[T]): def __init__(self, data: Iterable[T]) -> None: self.data = list(data) - def __iter__(self) -> Self: + def __iter__(self) -> "Self": return self def __next__(self) -> T: