From 834f6589676013eb1e2f0669e4c11c917c53489b Mon Sep 17 00:00:00 2001 From: Alex Schofield Date: Fri, 7 Feb 2025 18:03:04 +0000 Subject: remove unused os import from test_discovery.py --- tests/test_discover.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'tests') diff --git a/tests/test_discover.py b/tests/test_discover.py index c6d6ab2..9a2debd 100644 --- a/tests/test_discover.py +++ b/tests/test_discover.py @@ -2,7 +2,6 @@ from unittest import IsolatedAsyncioTestCase from unittest.mock import AsyncMock, patch from discover import main from bleak.backends.device import BLEDevice -import os class TestDiscover(IsolatedAsyncioTestCase): @patch('src.discover.BleakScanner.discover', new_callable=AsyncMock) @@ -33,4 +32,4 @@ class TestDiscover(IsolatedAsyncioTestCase): {"name": "Device 2", "address": "GG:HH:II:JJ:KK:LL"} ] - self.assertEqual(result,expected) \ No newline at end of file + self.assertEqual(result,expected) -- cgit v1.2.3