File tree Expand file tree Collapse file tree 1 file changed +9
-7
lines changed
Expand file tree Collapse file tree 1 file changed +9
-7
lines changed Original file line number Diff line number Diff line change 1+ from __future__ import annotations
2+
13import aiohttp
24from typing import Optional
35
@@ -184,13 +186,13 @@ async def update_sip_outbound_trunk_fields(
184186 self ,
185187 trunk_id : str ,
186188 * ,
187- address : Optional [ str ] = None ,
188- transport : Optional [ SIPTransport ] = None ,
189- numbers : Optional [ list [str ]] = None ,
190- auth_username : Optional [ str ] = None ,
191- auth_password : Optional [ str ] = None ,
192- name : Optional [ str ] = None ,
193- metadata : Optional [ str ] = None ,
189+ address : str | None = None ,
190+ transport : SIPTransport | None = None ,
191+ numbers : list [str ] | None = None ,
192+ auth_username : str | None = None ,
193+ auth_password : str | None = None ,
194+ name : str | None = None ,
195+ metadata : str | None = None ,
194196 ) -> SIPOutboundTrunkInfo :
195197 """Updates specific fields of an existing SIP outbound trunk.
196198
You can’t perform that action at this time.
0 commit comments