Skip to content

Commit 0e14075

Browse files
style: linting fix
ignore usage of List from typing in a specific location due to larger change requried to fix
1 parent a7e440a commit 0e14075

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/dve/core_engine/type_hints.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,13 @@
55
from multiprocessing import Queue as ProcessQueue
66
from pathlib import Path
77
from queue import Queue as ThreadQueue
8-
from typing import TYPE_CHECKING, Any, List, Optional, TypeVar, Union
8+
from typing import TYPE_CHECKING, Any, List, Optional, TypeVar, Union # pylint: disable=W1901
9+
# TODO - cannot remove List from Typing. See L60 for details.
910

1011
from pyspark.sql import DataFrame
1112
from pyspark.sql.types import StructType
1213
from typing_extensions import Literal, ParamSpec, get_args
1314

14-
# TODO - cannot remove List from Typing. See L60 for details.
15-
1615

1716
if TYPE_CHECKING: # pragma: no cover
1817
from dve.core_engine.message import FeedbackMessage

0 commit comments

Comments
 (0)