Skip to content

Commit da53ffb

Browse files
docs: move comments in example snippets (#626)
1 parent 4ffe79d commit da53ffb

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ import os
2626
from lithic import Lithic
2727

2828
client = Lithic(
29-
# This is the default and can be omitted
30-
api_key=os.environ.get("LITHIC_API_KEY"),
29+
api_key=os.environ.get("LITHIC_API_KEY"), # This is the default and can be omitted
3130
# defaults to "production".
3231
environment="sandbox",
3332
)
@@ -53,8 +52,7 @@ import asyncio
5352
from lithic import AsyncLithic
5453

5554
client = AsyncLithic(
56-
# This is the default and can be omitted
57-
api_key=os.environ.get("LITHIC_API_KEY"),
55+
api_key=os.environ.get("LITHIC_API_KEY"), # This is the default and can be omitted
5856
# defaults to "production".
5957
environment="sandbox",
6058
)

0 commit comments

Comments
 (0)