Skip to content

Commit

Permalink
fix: import bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dmyersturnbull committed Aug 13, 2022
1 parent fc44037 commit af10656
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pocketutils/core/enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,4 +215,4 @@ def _fix_lookup(cls, s: str) -> str:
return s.strip().replace(" ", "_").replace("-", "_").upper()


__all__ = ["TrueFalseEither", "DisjointEnum", "FlagEnum", "CleverEnum"]
__all__ = ["TrueFalseEither", "DisjointEnum", "FlagEnum", "CleverEnum", "MultiTruth"]
3 changes: 2 additions & 1 deletion pocketutils/full.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
from pocketutils.core import OptRow, SmartEnum, frozenlist # noqa: F401,F403
from pocketutils.core import OptRow, frozenlist # noqa: F401,F403
from pocketutils.core.chars import * # noqa: F401,F403
from pocketutils.core.enums import CleverEnum, FlagEnum, TrueFalseEither
from pocketutils.core.exceptions import * # noqa: F401,F403
from pocketutils.core.input_output import * # noqa: F401,F403
from pocketutils.core.iterators import * # noqa: F401,F403
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ build-backend = "poetry.masonry.api"

[tool.poetry]
name = "pocketutils"
version = "0.9.0"
version = "0.9.1"
description = "Adorable little Python code for you to copy or import."
keywords = ["python", "snippets", "utils", "gists", "bioinformatics"]
authors = ["Douglas Myers-Turnbull"]
Expand Down

0 comments on commit af10656

Please sign in to comment.