Skip to content

Commit 70c874a

Browse files
committed
Style edits
1 parent 2c3a5f4 commit 70c874a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

example/desktop_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ async def main():
1313
# Connects to the 1Password desktop app.
1414
client = await Client.authenticate(
1515
auth=DesktopAuth(
16-
account_name="YourAccountNameAsShownInTheDesktopApp" # Set to your 1Password account name.
16+
account_name="YourAccountNameAsShownInTheDesktopApp" # Set to your 1Password account name as shown at the top left sidebar of the app.
1717
),
1818
# Set the following to your own integration name and version.
1919
integration_name="My 1Password Integration",

src/onepassword/desktop_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def call_shared_library(self, payload: str, operation_kind: str) -> bytes:
8686
)
8787

8888
if ret != 0:
89-
raise RuntimeError(f"send_message failed with code {ret}. Please make sure the Desktop app integration setting is enabled, or contact 1Password support.")
89+
raise RuntimeError(f"send_message failed with code {ret}. In the 1Password desktop app, make sure Settings > Developer > Integrate with other apps is enabled, or contact 1Password support.")
9090

9191
# Copy bytes into Python
9292
data = ctypes.string_at(out_buf, out_len.value)

0 commit comments

Comments
 (0)