Skip to content

Commit 9290e7f

Browse files
committed
Unbreak linting
1 parent 59d2073 commit 9290e7f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

kit_test/arduino_test.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@
4242
def get_avrdude_path() -> Path:
4343
"""Get the path to avrdude."""
4444
if sys.platform.startswith('win'):
45-
from avrdude_windows import get_avrdude_path # type: ignore[import-untyped,unused-ignore]
45+
from avrdude_windows import ( # type: ignore[import-untyped,unused-ignore]
46+
get_avrdude_path,
47+
)
4648

4749
return Path(get_avrdude_path())
4850
else:

0 commit comments

Comments
 (0)