Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/databricks/sql/parameters/native.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ class DatabricksSupportedType(Enum):
bool,
decimal.Decimal,
None,
list,
dict,
tuple,
list["TAllowedParameterValue"],
dict["TAllowedParameterValue", "TAllowedParameterValue"],
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: is dict[str, "TAllowedParameterValue"] more appropriate?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Quite possibly, quite possibly! (I don't know; I didn't find out.)

tuple["TAllowedParameterValue", ...],
]


Expand Down
Loading