From b7c67ed2882fbe97ae4e2320e1157071c1ad763f Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 19 Dec 2024 02:32:36 +0000 Subject: [PATCH] style: fix quote style in test_base.py to match ruff format Co-Authored-By: Alex Reibman --- tests/integration/test_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/test_base.py b/tests/integration/test_base.py index e6285484..fc368665 100644 --- a/tests/integration/test_base.py +++ b/tests/integration/test_base.py @@ -24,7 +24,7 @@ async def async_setup_method(self, method): async def teardown_method(self, method): """Clean up after test.""" - if hasattr(self, 'provider'): + if hasattr(self, "provider"): self.provider.undo_override() async def async_verify_events(self, session, expected_count=1):