Skip to content

Commit 8205e3d

Browse files
committed
fix pylint getting through
Signed-off-by: Matt Richards <[email protected]>
1 parent 7760366 commit 8205e3d

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

tests/polars/test_polars_container.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
"""Unit tests for polars container."""
33

44
from typing import Optional
5+
from typing import (
6+
Type,
7+
) # when python 3.9 is minimum version, use `type` instead
58

69
import polars as pl
710
import pytest
@@ -22,10 +25,6 @@
2225
except ImportError:
2326
from typing_extensions import Annotated # type: ignore
2427

25-
from typing import (
26-
Type,
27-
) # when python 3.9 is minimum version, use `type` instead
28-
2928

3029
@pytest.fixture
3130
def ldf_basic():

0 commit comments

Comments
 (0)