Skip to content

Commit 0466803

Browse files
committed
cp dines
1 parent 35a1ef2 commit 0466803

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

src/runloop_api_client/sdk/async_gateway_config.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ class AsyncGatewayConfig:
1919
Example:
2020
>>> runloop = AsyncRunloopSDK()
2121
>>> gateway_config = await runloop.gateway_config.create(
22-
... name='my-api-gateway',
23-
... endpoint='https://api.example.com',
24-
... auth_mechanism={'type': 'bearer'},
22+
... name="my-api-gateway",
23+
... endpoint="https://api.example.com",
24+
... auth_mechanism={"type": "bearer"},
2525
... )
2626
>>> info = await gateway_config.get_info()
2727
>>> print(f"Gateway Config: {info.name}")
@@ -79,8 +79,8 @@ async def update(self, **params: Unpack[SDKGatewayConfigUpdateParams]) -> Gatewa
7979
8080
Example:
8181
>>> updated = await gateway_config.update(
82-
... name='updated-gateway-name',
83-
... description='Updated description',
82+
... name="updated-gateway-name",
83+
... description="Updated description",
8484
... )
8585
8686
:param params: See :typeddict:`~runloop_api_client.sdk._types.SDKGatewayConfigUpdateParams` for available parameters

src/runloop_api_client/sdk/gateway_config.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ class GatewayConfig:
1919
Example:
2020
>>> runloop = RunloopSDK()
2121
>>> gateway_config = runloop.gateway_config.create(
22-
... name='my-api-gateway',
23-
... endpoint='https://api.example.com',
24-
... auth_mechanism={'type': 'bearer'},
22+
... name="my-api-gateway",
23+
... endpoint="https://api.example.com",
24+
... auth_mechanism={"type": "bearer"},
2525
... )
2626
>>> info = gateway_config.get_info()
2727
>>> print(f"Gateway Config: {info.name}")
@@ -79,8 +79,8 @@ def update(self, **params: Unpack[SDKGatewayConfigUpdateParams]) -> GatewayConfi
7979
8080
Example:
8181
>>> updated = gateway_config.update(
82-
... name='updated-gateway-name',
83-
... description='Updated description',
82+
... name="updated-gateway-name",
83+
... description="Updated description",
8484
... )
8585
8686
:param params: See :typeddict:`~runloop_api_client.sdk._types.SDKGatewayConfigUpdateParams` for available parameters

0 commit comments

Comments
 (0)