Skip to content

Commit 395b1b8

Browse files
committed
PROPERLY sort imports LOL
1 parent 94cbaa1 commit 395b1b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas-stubs/_typing.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ from collections.abc import (
99
)
1010
import datetime
1111
from os import PathLike
12+
import sys
1213
from typing import (
1314
Any,
1415
Literal,
@@ -18,7 +19,6 @@ from typing import (
1819
TypeVar,
1920
overload,
2021
)
21-
import sys
2222

2323
import numpy as np
2424
from numpy import typing as npt

tests/test_frame.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import itertools
1616
from pathlib import Path
1717
import string
18+
import sys
1819
from typing import (
1920
TYPE_CHECKING,
2021
Any,
@@ -25,7 +26,6 @@
2526
Union,
2627
cast,
2728
)
28-
import sys
2929

3030
import numpy as np
3131
import numpy.typing as npt

0 commit comments

Comments
 (0)