Skip to content

Commit

Permalink
fix black
Browse files Browse the repository at this point in the history
  • Loading branch information
stickpin committed Feb 17, 2024
1 parent d1940f7 commit 3f78f54
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""pytest fixtures."""

from unittest.mock import patch

import pytest
Expand All @@ -13,7 +14,10 @@ def auto_enable_custom_integrations(enable_custom_integrations):
@pytest.fixture
def bypass_setup_fixture():
"""Prevent setup."""
with patch("custom_components.volkswagencarnet.async_setup", return_value=True,), patch(
with patch(
"custom_components.volkswagencarnet.async_setup",
return_value=True,
), patch(
"custom_components.volkswagencarnet.async_setup_entry",
return_value=True,
):
Expand Down

0 comments on commit 3f78f54

Please sign in to comment.