diff options
| author | Alex Schofield <git@ajschof.me> | 2025-02-07 18:03:04 +0000 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2025-02-07 18:03:04 +0000 |
| commit | 834f6589676013eb1e2f0669e4c11c917c53489b (patch) | |
| tree | 601c12d0f9fe0884cae295ed6dbd8d93912be0dd | |
| parent | 8499a404322dc37af2afae05ec5630b366656b27 (diff) | |
| download | tp-logger-834f6589676013eb1e2f0669e4c11c917c53489b.tar.gz tp-logger-834f6589676013eb1e2f0669e4c11c917c53489b.zip | |
remove unused os import from test_discovery.py
| -rw-r--r-- | tests/test_discover.py | 3 |
1 files changed, 1 insertions, 2 deletions
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) |
