logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git
commit: e69be076fc1da66e7cebbb5f4f7ad9ddb851d687
parent 275e9de350d3588ddab058fda6536111b7a27fdc
Author: QMK Bot <hello@qmk.fm>
Date:   Wed, 17 Jul 2024 19:31:51 +0000

Merge remote-tracking branch 'origin/master' into develop

Diffstat:

Mlib/python/qmk/flashers.py2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/lib/python/qmk/flashers.py b/lib/python/qmk/flashers.py @@ -206,6 +206,8 @@ def _flash_uf2(file): def flasher(mcu, file): + # Avoid "expected string or bytes-like object, got 'WindowsPath" issues + file = file.as_posix() bl, details = _find_bootloader() # Add a small sleep to avoid race conditions time.sleep(1)