We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a56053 commit baa3809Copy full SHA for baa3809
1 file changed
tests/test_number_spelling.py
@@ -1,7 +1,11 @@
1
import unittest
2
3
import pytest
4
-import tomllib
+
5
+try:
6
+ import tomllib
7
+except ModuleNotFoundError:
8
+ import pip._vendor.tomli as tomllib
9
10
from babel import numbers, rbnf
11
from babel.localedata import locale_identifiers
0 commit comments