Skip to content

Commit 777706d

Browse files
feat: ruff formatting.
1 parent 563f65e commit 777706d

1 file changed

Lines changed: 8 additions & 3 deletions

File tree

‎tests/test_audio.py‎

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
jigsaw = jigsawstack.JigsawStack(api_key=os.getenv("JIGSAWSTACK_API_KEY"))
1616
async_jigsaw = jigsawstack.AsyncJigsawStack(api_key=os.getenv("JIGSAWSTACK_API_KEY"))
1717

18-
# Sample audio URLs for testing
1918
AUDIO_URL = AUDIO_URL_LONG = "https://jigsawstack.com/preview/stt-example.wav"
2019

2120

@@ -98,15 +97,21 @@
9897
WEBHOOK_TEST_CASES = [
9998
{
10099
"name": "with_webhook_url",
101-
"params": {"url": AUDIO_URL, "webhook_url": "https://webhook.site/test-webhook"},
100+
"params": {
101+
"url": AUDIO_URL,
102+
"webhook_url": "https://webhook.site/test-webhook",
103+
},
102104
"blob": None,
103105
"options": None,
104106
},
105107
{
106108
"name": "with_blob_and_webhook",
107109
"params": None,
108110
"blob": AUDIO_URL,
109-
"options": {"webhook_url": "https://webhook.site/test-webhook", "language": "en"},
111+
"options": {
112+
"webhook_url": "https://webhook.site/test-webhook",
113+
"language": "en",
114+
},
110115
},
111116
]
112117

0 commit comments

Comments
 (0)