Skip to content

Commit 5fed74f

Browse files
committed
STYLE: remove extra line (pandas-dev#39203)
1 parent 544d6f8 commit 5fed74f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/extension/test_integer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020

2121
import pandas as pd
2222
import pandas._testing as tm
23+
from pandas.api.types import is_integer_dtype
2324
from pandas.core.arrays.integer import (
2425
Int8Dtype,
2526
Int16Dtype,
@@ -31,7 +32,7 @@
3132
UInt64Dtype,
3233
)
3334
from pandas.tests.extension import base
34-
from pandas.api.types import is_integer_dtype
35+
3536

3637
def make_data():
3738
return list(range(1, 9)) + [pd.NA] + list(range(10, 98)) + [pd.NA] + [99, 100]

0 commit comments

Comments
 (0)