Skip to content

Commit 934ef34

Browse files
authored
Apply suggestions from code review
1 parent 7a6e54a commit 934ef34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It is generated with [Stainless](https://www.stainless.com/).
1111

1212
## Documentation
1313

14-
The REST API documentation can be found on [docs.kernel.com](https://docs.onkernel.com). The full API of this library can be found in [api.md](api.md).
14+
The REST API documentation can be found on [docs.onkernel.com](https://docs.onkernel.com). The full API of this library can be found in [api.md](api.md).
1515

1616
## Installation
1717

tests/test_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@ def test_base_url_env(self) -> None:
695695
Kernel(api_key=api_key, _strict_response_validation=True, environment="production")
696696

697697
client = Kernel(base_url=None, api_key=api_key, _strict_response_validation=True, environment="production")
698-
assert str(client.base_url).startswith("https://api.kernel.com/")
698+
assert str(client.base_url).startswith("https://api.onkernel.com/")
699699

700700
client.close()
701701

@@ -1598,7 +1598,7 @@ async def test_base_url_env(self) -> None:
15981598
client = AsyncKernel(
15991599
base_url=None, api_key=api_key, _strict_response_validation=True, environment="production"
16001600
)
1601-
assert str(client.base_url).startswith("https://api.kernel.com/")
1601+
assert str(client.base_url).startswith("https://api.onkernel.com/")
16021602

16031603
await client.close()
16041604

0 commit comments

Comments
 (0)