Skip to content

Commit

Permalink
Fix bug in option validator causing PyPi download preference to be ig…
Browse files Browse the repository at this point in the history
…nored (#52)
  • Loading branch information
jamesweakley authored Dec 31, 2022
1 parent 4263305 commit 362c76f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/snowcli/__about__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import annotations

VERSION = "0.1.9"
VERSION = "0.1.10"
1 change: 1 addition & 0 deletions src/snowcli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ def yes_no_ask_callback(value: str):
raise typer.BadParameter(
f"Valid values: {YesNoAskOptions}. You provided: {value}",
)
return value


def getDeployNames(database, schema, name) -> dict:
Expand Down

0 comments on commit 362c76f

Please sign in to comment.