Fix quote issue when deploying worker (#426)

This commit is contained in:
Renato Byrro 2025-06-11 12:53:45 -03:00 committed by GitHub
parent ab1a2a8d31
commit 5c221dd042
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -39,7 +39,8 @@ def is_valid_date_string(date_string: str) -> bool:
def quote(v: str) -> str:
return f'"{v.replace('"', '\\"')}"'
quoted = v.replace('"', '\\"')
return f'"{quoted}"'
def build_search_issues_jql(

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "arcade_jira"
version = "0.1.0"
version = "0.1.1"
description = "Arcade tools designed for LLMs to interact with Atlassian Jira"
authors = ["Arcade <dev@arcade.dev>"]