Skip to content

Commit 7aacc1c

Browse files
authored
Remove trailing spaces in README example code
1 parent 2aae596 commit 7aacc1c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

openapi_python_client/templates/README.md.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ By default, when you're calling an HTTPS API it will attempt to verify that SSL
4747

4848
```python
4949
client = AuthenticatedClient(
50-
base_url="https://internal_api.example.com",
50+
base_url="https://internal_api.example.com",
5151
token="SuperSecretToken",
5252
verify_ssl="/path/to/certificate_bundle.pem",
5353
)
@@ -57,7 +57,7 @@ You can also disable certificate validation altogether, but beware that **this i
5757

5858
```python
5959
client = AuthenticatedClient(
60-
base_url="https://internal_api.example.com",
60+
base_url="https://internal_api.example.com",
6161
token="SuperSecretToken",
6262
verify_ssl=False
6363
)

0 commit comments

Comments
 (0)