From d22601be465510d7b4816b4dedf6adfd50fd13da Mon Sep 17 00:00:00 2001 From: Jacob Berelman <630000+stickpin@users.noreply.github.com> Date: Sat, 17 Feb 2024 16:14:33 +0100 Subject: [PATCH] black fix --- manage/update_manifest.py | 1 + tests/hass_mocks.py | 1 + tests/timer_services_test.py | 1 + tests/util_test.py | 1 + 4 files changed, 4 insertions(+) diff --git a/manage/update_manifest.py b/manage/update_manifest.py index 1691fece..ef199a4c 100644 --- a/manage/update_manifest.py +++ b/manage/update_manifest.py @@ -1,4 +1,5 @@ """Update the manifest file.""" + import sys import json import os diff --git a/tests/hass_mocks.py b/tests/hass_mocks.py index 521302f7..21d0a527 100644 --- a/tests/hass_mocks.py +++ b/tests/hass_mocks.py @@ -1,4 +1,5 @@ """Mock helpers.""" + from homeassistant.config_entries import ConfigEntry, SOURCE_USER from homeassistant.util import uuid as uuid_util diff --git a/tests/timer_services_test.py b/tests/timer_services_test.py index 8dae541d..7fc620e8 100644 --- a/tests/timer_services_test.py +++ b/tests/timer_services_test.py @@ -1,4 +1,5 @@ """Timer services tests.""" + import asyncio from asyncio import Future from datetime import timedelta diff --git a/tests/util_test.py b/tests/util_test.py index 70be35d7..ab7da837 100644 --- a/tests/util_test.py +++ b/tests/util_test.py @@ -1,4 +1,5 @@ """Timer services tests.""" + from asyncio import Future from unittest.mock import patch, MagicMock