Skip to content

Commit c657719

Browse files
committed
fix
1 parent afe27e7 commit c657719

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

faster_ens/_normalization.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
final,
2323
)
2424

25+
import pyunormalize._unicode as unicode
2526
from pyunormalize import (
2627
normalization,
27-
_unicode,
2828
)
2929

3030
from .exceptions import (
@@ -33,10 +33,10 @@
3333

3434
# Constants vendored from pyunormalize
3535

36-
_NFC__QC_NO_OR_MAYBE: Final = _unicode._NFC__QC_NO_OR_MAYBE
37-
_NFD__QC_NO: Final = _unicode._NFD__QC_NO
38-
_NON_ZERO_CCC_TABLE: Final = _unicode._NON_ZERO_CCC_TABLE
39-
_COMPOSITION_EXCLUSIONS: Final = _unicode._COMPOSITION_EXCLUSIONS
36+
_NFC__QC_NO_OR_MAYBE: Final = unicode._NFC__QC_NO_OR_MAYBE
37+
_NFD__QC_NO: Final = unicode._NFD__QC_NO
38+
_NON_ZERO_CCC_TABLE: Final = unicode._NON_ZERO_CCC_TABLE
39+
_COMPOSITION_EXCLUSIONS: Final = unicode._COMPOSITION_EXCLUSIONS
4040
_COMPOSITE_BY_CDECOMP: Final[Dict[Tuple[int, Optional[int]], int]] = normalization._COMPOSITE_BY_CDECOMP
4141
_FULL_CDECOMP_BY_CHAR: Final[Dict[int, List[int]]] = normalization._FULL_CDECOMP_BY_CHAR
4242
_LB: Final = normalization._LB

0 commit comments

Comments
 (0)