Skip to content

Commit

Permalink
fixed imports for EagerQList
Browse files Browse the repository at this point in the history
  • Loading branch information
WitoldFracek committed Nov 7, 2023
1 parent b8908b3 commit 0c4442c
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
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "qwlist"
version = "0.1.5"
version = "0.1.6"
authors = [
{ name="Witold Frącek" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/qwlist/qwlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ def eager(self) -> "EagerQList[T]":
Returns: EagerQList[T]
"""
from eager_qwlist.eager import EagerQList
from .eager_qwlist.eager import EagerQList
return EagerQList(self)

def filter(self, pred: Callable[[T], bool]) -> Lazy[T]:
Expand Down

0 comments on commit 0c4442c

Please sign in to comment.