Skip to content

Commit

Permalink
0.1.4.5 hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
lightmanLP committed Oct 8, 2024
1 parent 8612441 commit 4965feb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <liteman1000@gmail.com>", "mikk357 <mikk357@yandex.com>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion yamt/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4965feb

Please sign in to comment.