Skip to content

Commit

Permalink
Merge pull request #18 from pomponchik/develop
Browse files Browse the repository at this point in the history
0.0.13
  • Loading branch information
pomponchik authored Jan 7, 2024
2 parents 120e6f3 + 464c4b5 commit 86351b4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

- name: Run mypy
shell: bash
run: mypy cantok --strict --implicit-reexport
run: mypy cantok --strict

- name: Run ruff
shell: bash
Expand Down
12 changes: 6 additions & 6 deletions cantok/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
from cantok.tokens.abstract_token import AbstractToken # noqa: F401
from cantok.tokens.simple_token import SimpleToken # noqa: F401
from cantok.tokens.condition_token import ConditionToken # noqa: F401
from cantok.tokens.counter_token import CounterToken # noqa: F401
from cantok.tokens.timeout_token import TimeoutToken
from cantok.tokens.abstract_token import AbstractToken as AbstractToken # noqa: F401
from cantok.tokens.simple_token import SimpleToken as SimpleToken # noqa: F401
from cantok.tokens.condition_token import ConditionToken as ConditionToken # noqa: F401
from cantok.tokens.counter_token import CounterToken as CounterToken # noqa: F401
from cantok.tokens.timeout_token import TimeoutToken as TimeoutToken

from cantok.errors import CancellationError, ConditionCancellationError, CounterCancellationError, TimeoutCancellationError # noqa: F401
from cantok.errors import CancellationError as CancellationError, ConditionCancellationError as ConditionCancellationError, CounterCancellationError as CounterCancellationError, TimeoutCancellationError as TimeoutCancellationError # noqa: F401


TimeOutToken = TimeoutToken
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 = "setuptools.build_meta"

[project]
name = "cantok"
version = "0.0.12"
version = "0.0.13"
authors = [
{ name="Evgeniy Blinov", email="zheni-b@yandex.ru" },
]
Expand Down

0 comments on commit 86351b4

Please sign in to comment.