Skip to content

Commit

Permalink
docs: move comments in example snippets (#626)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Nov 11, 2024
1 parent 7513850 commit d49933a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ import os
from lithic import Lithic

client = Lithic(
# This is the default and can be omitted
api_key=os.environ.get("LITHIC_API_KEY"),
api_key=os.environ.get("LITHIC_API_KEY"), # This is the default and can be omitted
# defaults to "production".
environment="sandbox",
)
Expand All @@ -53,8 +52,7 @@ import asyncio
from lithic import AsyncLithic

client = AsyncLithic(
# This is the default and can be omitted
api_key=os.environ.get("LITHIC_API_KEY"),
api_key=os.environ.get("LITHIC_API_KEY"), # This is the default and can be omitted
# defaults to "production".
environment="sandbox",
)
Expand Down

0 comments on commit d49933a

Please sign in to comment.