Apply reorder-python-imports to all files

This commit is contained in:
Anthony Sottile
2018-10-25 00:01:29 -07:00
parent f6dfca7182
commit 2368fbb63c
109 changed files with 730 additions and 425 deletions

View File

@@ -1,13 +1,14 @@
# encoding: utf-8
import doctest
import operator
import sys
import pytest
import doctest
from pytest import approx
from operator import eq, ne
from decimal import Decimal
from fractions import Fraction
from operator import eq
from operator import ne
import pytest
from pytest import approx
inf, nan = float("inf"), float("nan")