summaryrefslogtreecommitdiffstats
path: root/Lib/decimal.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/decimal.py')
-rw-r--r--Lib/decimal.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/decimal.py b/Lib/decimal.py
index d61e374..13a0dcb 100644
--- a/Lib/decimal.py
+++ b/Lib/decimal.py
@@ -100,9 +100,9 @@ NaN
try:
from _decimal import *
- from _decimal import __version__
- from _decimal import __libmpdec_version__
+ from _decimal import __version__ # noqa: F401
+ from _decimal import __libmpdec_version__ # noqa: F401
except ImportError:
from _pydecimal import *
- from _pydecimal import __version__
- from _pydecimal import __libmpdec_version__
+ from _pydecimal import __version__ # noqa: F401
+ from _pydecimal import __libmpdec_version__ # noqa: F401