summaryrefslogtreecommitdiffstats
path: root/tests/test_discover.py
diff options
context:
space:
mode:
authorAlex Schofield <git@ajschof.me>2025-02-07 18:03:04 +0000
committerAlex Schofield <git@ajschof.me>2025-02-07 18:03:04 +0000
commit834f6589676013eb1e2f0669e4c11c917c53489b (patch)
tree601c12d0f9fe0884cae295ed6dbd8d93912be0dd /tests/test_discover.py
parent8499a404322dc37af2afae05ec5630b366656b27 (diff)
downloadtp-logger-834f6589676013eb1e2f0669e4c11c917c53489b.tar.gz
tp-logger-834f6589676013eb1e2f0669e4c11c917c53489b.zip
remove unused os import from test_discovery.py
Diffstat (limited to 'tests/test_discover.py')
-rw-r--r--tests/test_discover.py3
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)
git.ajschof.me — hosted by ajschofield — powered by cgit