-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from pomponchik/develop
0.0.13
- Loading branch information
Showing
3 changed files
with
8 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters