Fix quote issue when deploying worker (2) (#427)

This commit is contained in:
Renato Byrro 2025-06-11 13:49:48 -03:00 committed by GitHub
parent 5c221dd042
commit 01a9efcf63
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -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}"'

View file

@ -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>"]