From 65cf33ce89cfcb7f81f31278a2cf6523c32a4754 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 20 Mar 2026 23:35:43 +0000 Subject: [PATCH] style: apply ruff auto-fix - Auto-formatted code with ruff format - Applied ruff linting fixes with --fix Co-authored-by: github-actions[bot] --- tests/test_api_dropbox.py | 1 - tests/test_views_dropbox.py | 1 - 2 files changed, 2 deletions(-) diff --git a/tests/test_api_dropbox.py b/tests/test_api_dropbox.py index 9168216c..71139d7b 100644 --- a/tests/test_api_dropbox.py +++ b/tests/test_api_dropbox.py @@ -666,4 +666,3 @@ class TestGlobalAuthorizeUrl: authorize_url = response.json()["authorize_url"] # The redirect_uri must be URL-encoded and contain the public base URL assert "https%3A%2F%2Fprod.example.com%2Fdropbox-callback" in authorize_url - diff --git a/tests/test_views_dropbox.py b/tests/test_views_dropbox.py index 6d0bd7a6..79dad26c 100644 --- a/tests/test_views_dropbox.py +++ b/tests/test_views_dropbox.py @@ -178,4 +178,3 @@ class TestDropboxCallbackUrl: # The configured public_base_url hostname must appear in the page (redirect URI display) page_text = response.text assert "configured.example.com/dropbox-callback" in page_text -