Skip to content

Commit 042dd7a

Browse files
remove redundant imports & sort them
Signed-off-by: wyattscarpenter <wyattscarpenter@gmail.com>
1 parent fd81c5a commit 042dd7a

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/databricks/sql/parameters/native.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import datetime
22
import decimal
33
from enum import Enum, auto
4-
from typing import Optional, Sequence, Any
4+
from typing import Any, Dict, Optional, Sequence, Union
55

66
from databricks.sql.exc import NotSupportedError
77
from databricks.sql.thrift_api.TCLIService.ttypes import (
@@ -10,12 +10,6 @@
1010
TSparkParameterValueArg,
1111
)
1212

13-
import datetime
14-
import decimal
15-
from enum import Enum, auto
16-
from typing import Dict, List, Union
17-
18-
1913
class ParameterApproach(Enum):
2014
INLINE = 1
2115
NATIVE = 2

0 commit comments

Comments
 (0)