Fix quote issue when deploying worker (2) (#427)
This commit is contained in:
parent
5c221dd042
commit
01a9efcf63
2 changed files with 2 additions and 2 deletions
|
|
@ -39,7 +39,7 @@ def is_valid_date_string(date_string: str) -> bool:
|
|||
|
||||
|
||||
def quote(v: str) -> str:
|
||||
quoted = v.replace('"', '\\"')
|
||||
quoted = v.replace('"', r"\"")
|
||||
return f'"{quoted}"'
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "arcade_jira"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
description = "Arcade tools designed for LLMs to interact with Atlassian Jira"
|
||||
authors = ["Arcade <dev@arcade.dev>"]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue