diff options
author | Victor Stinner <vstinner@python.org> | 2022-06-22 17:14:27 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-22 17:14:27 (GMT) |
commit | 47e35625ff2c4e6511a12e7178c3e4fbc965b634 (patch) | |
tree | e9a6b4d687233135f993260b12011613b9189058 /Lib/random.py | |
parent | 8661c5053fbe3e246289d77e49a813470b3a16f7 (diff) | |
download | cpython-47e35625ff2c4e6511a12e7178c3e4fbc965b634.zip cpython-47e35625ff2c4e6511a12e7178c3e4fbc965b634.tar.gz cpython-47e35625ff2c4e6511a12e7178c3e4fbc965b634.tar.bz2 |
gh-84623: Remove unused imports (#94132)
Diffstat (limited to 'Lib/random.py')
-rw-r--r-- | Lib/random.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/random.py b/Lib/random.py index a2dfcb5..2166474 100644 --- a/Lib/random.py +++ b/Lib/random.py @@ -50,7 +50,7 @@ from math import log as _log, exp as _exp, pi as _pi, e as _e, ceil as _ceil from math import sqrt as _sqrt, acos as _acos, cos as _cos, sin as _sin from math import tau as TWOPI, floor as _floor, isfinite as _isfinite from os import urandom as _urandom -from _collections_abc import Set as _Set, Sequence as _Sequence +from _collections_abc import Sequence as _Sequence from operator import index as _index from itertools import accumulate as _accumulate, repeat as _repeat from bisect import bisect as _bisect |