From 38dc04a6ad24062a1ed5871ed660d1f1ccf670ed Mon Sep 17 00:00:00 2001 From: Kai Striega Date: Sun, 5 May 2024 09:17:55 +1000 Subject: [PATCH] STY: Sort imports --- numpy_financial/tests/test_financial.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/numpy_financial/tests/test_financial.py b/numpy_financial/tests/test_financial.py index 69012e0..152b833 100644 --- a/numpy_financial/tests/test_financial.py +++ b/numpy_financial/tests/test_financial.py @@ -8,7 +8,7 @@ # the versions in numpy instead of numpy_financial. import numpy import pytest -from hypothesis import given, settings, assume +from hypothesis import assume, given, settings from numpy.testing import ( assert_, assert_allclose, @@ -18,6 +18,7 @@ import numpy_financial as npf + def float_dtype(): return npst.floating_dtypes(sizes=[32, 64], endianness="<")