-
-
Notifications
You must be signed in to change notification settings - Fork 18
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 #92 from common-workflow-language/emoij_workaround
Workaround for Py2 emoji issues
- Loading branch information
Showing
5 changed files
with
52 additions
and
2 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
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Stubs for emoji (Python 2) | ||
# | ||
# NOTE: This dynamically typed stub was automatically generated by stubgen. | ||
|
||
from emoji.core import emojize | ||
from emoji.core import demojize | ||
from emoji.core import get_emoji_regexp | ||
from emoji.unicode_codes import EMOJI_ALIAS_UNICODE | ||
from emoji.unicode_codes import EMOJI_UNICODE | ||
from emoji.unicode_codes import UNICODE_EMOJI | ||
from emoji.unicode_codes import UNICODE_EMOJI_ALIAS | ||
|
||
__email__: str | ||
__source__: str | ||
__license__: str | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Stubs for emoji.core (Python 3) | ||
# | ||
# NOTE: This dynamically typed stub was automatically generated by stubgen. | ||
|
||
from typing import Any, Text | ||
|
||
def emojize(string: Text, use_aliases: bool = ..., delimiters: Any = ...): ... | ||
def demojize(string: Text, delimiters: Any = ...): ... | ||
def get_emoji_regexp(): ... | ||
def emoji_lis(string: Any): ... | ||
|
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Stubs for emoji.unicode_codes (Python 3) | ||
# | ||
# NOTE: This dynamically typed stub was automatically generated by stubgen. | ||
|
||
from typing import Any | ||
|
||
EMOJI_UNICODE: Any | ||
EMOJI_ALIAS_UNICODE: Any | ||
UNICODE_EMOJI: Any | ||
UNICODE_EMOJI_ALIAS: Any |