From fb945058c5563e778b21e06f642466be69402bf8 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 19:24:57 +0000 Subject: [PATCH 1/2] [pre-commit.ci] pre-commit autoupdate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit updates: - [github.com/pycqa/isort: 7.0.0 → 9.0.0a3](https://github.com/pycqa/isort/compare/7.0.0...9.0.0a3) --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 8d94e840..424b92d6 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,7 +19,7 @@ repos: hooks: - id: autopep8 - repo: https://github.com/pycqa/isort - rev: 7.0.0 + rev: 9.0.0a3 hooks: - id: isort name: isort (python) From d424d229429837df5fbc1c6257489233bd4ede7f Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 27 Apr 2026 19:25:09 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- examples/do_signin.py | 5 +++-- examples/service_accounts/02_item_get_required_option.py | 5 +++-- examples/service_accounts/03_vault_list_prohibted_option.py | 5 +++-- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/examples/do_signin.py b/examples/do_signin.py index 50a9d167..e35373af 100644 --- a/examples/do_signin.py +++ b/examples/do_signin.py @@ -16,8 +16,9 @@ EXISTING_AUTH_AVAIL, EXISTING_AUTH_REQD ) -from pyonepassword.api.exceptions import \ - OPAuthenticationException # noqa: E402 +from pyonepassword.api.exceptions import ( # noqa: E402 + OPAuthenticationException +) def do_signin(vault=None, op_path="op", existing_auth=EXISTING_AUTH_AVAIL, account=None, logger=None): diff --git a/examples/service_accounts/02_item_get_required_option.py b/examples/service_accounts/02_item_get_required_option.py index eece6266..a7fbfc15 100644 --- a/examples/service_accounts/02_item_get_required_option.py +++ b/examples/service_accounts/02_item_get_required_option.py @@ -19,8 +19,9 @@ # isort: split from pyonepassword import OP # noqa: E402 -from pyonepassword.api.exceptions import \ - OPSvcAcctCommandNotSupportedException # noqa: E402 +from pyonepassword.api.exceptions import ( # noqa: E402 + OPSvcAcctCommandNotSupportedException +) def do_signin(): diff --git a/examples/service_accounts/03_vault_list_prohibted_option.py b/examples/service_accounts/03_vault_list_prohibted_option.py index a3955a19..d7d36d07 100644 --- a/examples/service_accounts/03_vault_list_prohibted_option.py +++ b/examples/service_accounts/03_vault_list_prohibted_option.py @@ -20,8 +20,9 @@ # isort: split from pyonepassword import OP # noqa: E402 -from pyonepassword.api.exceptions import \ - OPSvcAcctCommandNotSupportedException # noqa: E402 +from pyonepassword.api.exceptions import ( # noqa: E402 + OPSvcAcctCommandNotSupportedException +) def do_pprint(obj):