We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30d6cdf commit 2c84cbeCopy full SHA for 2c84cbe
pint/compat.py
@@ -243,9 +243,9 @@ class BehaviorChangeWarning(UserWarning):
243
try:
244
import tomli_w # noqa: F401
245
246
- HAS_TOMLLI_W = True
+ HAS_TOMLI_W = True
247
except ImportError:
248
- HAS_TOMLLI_W = False
+ HAS_TOMLI_W = False
249
250
if sys.version_info >= (3, 11):
251
import tomllib # noqa
@@ -267,10 +267,10 @@ class BehaviorChangeWarning(UserWarning):
267
else:
268
tomllib = None
269
270
-if HAS_TOMLLI_W:
+if HAS_TOMLI_W:
271
272
273
- tomllib_w = None
+ tomli_w = None
274
275
276
if HAS_BABEL:
0 commit comments