Skip to content

Commit 0c4c874

Browse files
committed
STY: Sort imports
1 parent 158b789 commit 0c4c874

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

tests/test_financial.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
1-
from decimal import Decimal
21
import math
2+
from decimal import Decimal
33

44
# Don't use 'import numpy as np', to avoid accidentally testing
55
# the versions in numpy instead of numpy_financial.
66
import numpy
7+
import pytest
78
from numpy.testing import (
8-
assert_, assert_almost_equal, assert_allclose, assert_equal, assert_raises
9+
assert_,
10+
assert_allclose,
11+
assert_almost_equal,
12+
assert_equal,
13+
assert_raises,
914
)
10-
import pytest
1115

1216
import numpy_financial as npf
1317

0 commit comments

Comments
 (0)