Skip to content

Commit edda191

Browse files
committed
Remove unnecessary constructor
1 parent 57bed66 commit edda191

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ns/adapters/outbound/lox24_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def __init__(self, *, config: Lox24ClientConfig):
6868
self._config = config
6969
self._response: Response | None = None
7070
self._sender_id: str = self._config.lox24_sender_id
71-
self._send_url: URL = URL(str(self._config.lox24_send_url))
71+
self._send_url: URL = self._config.lox24_send_url
7272
self._headers: dict[str, str] = {
7373
self._config.lox24_auth_token_header: self._config.lox24_token.get_secret_value()
7474
}

0 commit comments

Comments
 (0)