From 29772fac9e4fba01177b10f8a8d84fc5870f5473 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 18:30:51 +0000 Subject: [PATCH 1/2] =?UTF-8?q?security(pip=5Frequirements):=20?= =?UTF-8?q?=F0=9F=9B=A1=EF=B8=8F=20minor=20dependency=20to=20v2.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3f6a39b..0a1afb3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,5 +4,5 @@ pytest python-dotenv flit black -urllib3==2.6.3 # not directly required, pinned by Snyk to avoid a vulnerability +urllib3==2.7.0 # not directly required, pinned by Snyk to avoid a vulnerability zipp==3.23.0 # not directly required, pinned by Snyk to avoid a vulnerability From c14fdddb77900bf80da74e24b720f8a915947c24 Mon Sep 17 00:00:00 2001 From: Lint Action Date: Mon, 11 May 2026 18:31:19 +0000 Subject: [PATCH 2/2] Fix code style issues with Black --- example.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/example.py b/example.py index d37d7cc..9e3da94 100644 --- a/example.py +++ b/example.py @@ -23,10 +23,8 @@ try: secret = secret_server_cloud.get_secret(os.getenv("TSS_SECRET_ID")) serverSecret = ServerSecret(**secret) - print( - f"""username: {serverSecret.fields['username'].value} + print(f"""username: {serverSecret.fields['username'].value} password: {serverSecret.fields['password'].value} - template: {serverSecret.secret_template_name}""" - ) + template: {serverSecret.secret_template_name}""") except SecretServerError as error: print(error.response.text)