Skip to content

Commit

Permalink
Mute linters
Browse files Browse the repository at this point in the history
  • Loading branch information
abmantis committed Oct 31, 2023
1 parent 8a6659b commit 56c5e29
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Manual testing CLI."""
# ruff: noqa: T201
import argparse
import asyncio
import logging
Expand All @@ -21,7 +22,9 @@

async def getBLEDevice(address: str):
"""Get BLE Device from address."""
return await BleakScanner.find_device_by_address(address)
return await BleakScanner.find_device_by_address(
address
) # pyright: ignore[reportGeneralTypeIssues]


def print_menu():
Expand Down

0 comments on commit 56c5e29

Please sign in to comment.