Skip to content

Commit 2c18775

Browse files
RichardAtCTiampax
authored andcommitted
Fix lint issues from PR RichardAtCT#158 merge (black + flake8)
- Reformat registry.py and settings.py (black) - Add noqa for asyncio/Path imports used in patch() strings (flake8 F401)
1 parent 229c9b7 commit 2c18775

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tests/unit/test_bot/test_voice_handler.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
"""Tests for voice handler feature."""
22

3-
import asyncio
3+
import asyncio # noqa: F401 – used in patch() target strings
44
import sys
55
from datetime import timedelta
6+
from pathlib import Path # noqa: F401 – used in patch() target strings
67
from types import SimpleNamespace
78
from unittest.mock import AsyncMock, MagicMock, patch
89

0 commit comments

Comments
 (0)