Skip to content

Commit 16a4882

Browse files
committed
Linting
1 parent 683db1e commit 16a4882

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

video/src/vonage_video/models/audio_connector.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,7 @@ class AudioTransportConfiguration(BaseModel):
2828
@model_validator(mode='after')
2929
def encoding_must_be_specified_for_json_transport(self):
3030
if self.transport == AudioTransportTransport.JSON and not self.encoding:
31-
raise ValueError(
32-
"encoding must be specified when transport is JSON"
33-
)
31+
raise ValueError("encoding must be specified when transport is JSON")
3432
return self
3533

3634

video/tests/test_audio_connector.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from os.path import abspath
22

3-
import responses
43
import pytest
4+
import responses
55
from pydantic import ValidationError
66
from vonage_http_client import HttpClient
77
from vonage_video import (

0 commit comments

Comments
 (0)