Skip to content

Commit f38e270

Browse files
committed
remove unnecessary sys import
1 parent e30dd86 commit f38e270

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/etc/dec2flt_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
even larger, and it's already uncomfortably large (6 KiB).
1515
"""
1616
from __future__ import print_function
17-
import sys
1817
from math import ceil, log
1918
from fractions import Fraction
2019
from collections import namedtuple
@@ -82,6 +81,7 @@ def error(f, e, z):
8281
ulp_err = abs_err / Fraction(2) ** z.exp
8382
return float(ulp_err)
8483

84+
8585
HEADER = """
8686
//! Tables of approximations of powers of ten.
8787
//! DO NOT MODIFY: Generated by `src/etc/dec2flt_table.py`

0 commit comments

Comments
 (0)