We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 541471d commit 925678cCopy full SHA for 925678c
domdf_python_tools/bases.py
@@ -389,7 +389,7 @@ def as_integer_ratio(self) -> Tuple[int, int]:
389
390
return float(self).as_integer_ratio()
391
392
- def hex(self) -> str: # noqa: A003
+ def hex(self) -> str: # noqa: A003 # pylint: disable=redefined-builtin
393
"""
394
Returns the hexadecimal (base 16) representation of the float.
395
domdf_python_tools/compat.py
@@ -57,7 +57,7 @@
57
58
if sys.version_info[:2] < (3, 8): # pragma: no cover (>=py38)
59
# 3rd party
60
- import importlib_metadata # type: ignore
+ import importlib_metadata
61
else: # pragma: no cover (<py38)
62
# stdlib
63
import importlib.metadata as importlib_metadata
0 commit comments