Skip to content

Commit

Permalink
change verb conjugation in example code comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-1pass committed Mar 12, 2024
1 parent 0a514a5 commit 01e117d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/onepassword/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ async def main():
# Replace "OP_SERVICE_ACCOUNT_TOKEN" with the environment variable for your service account token.
token = os.getenv("OP_SERVICE_ACCOUNT_TOKEN")

# Connect to 1Password.
# Connects to 1Password.
client = await Client.authenticate(auth=token, integration_name=DEFAULT_INTEGRATION_NAME, integration_version=DEFAULT_INTEGRATION_VERSION)

# Retrieve a secret from 1Password. Takes a secret reference as input and returns the secret to which it points.
# Retrieves a secret from 1Password. Takes a secret reference as input and returns the secret to which it points.
value = await client.secrets.resolve("op://xw33qlvug6moegr3wkk5zkenoa/bckakdku7bgbnyxvqbkpehifki/foobar")
print(value)

Expand Down

0 comments on commit 01e117d

Please sign in to comment.