🔨 PowerShell compatibility (#27720)

This commit is contained in:
Andrew
2025-03-17 19:04:59 -04:00
committed by GitHub
parent 0d87dd9d51
commit 2f4f2bce15
8 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ def group_options(schema):
def load_boards():
bpath = Path("Marlin/src/core/boards.h")
if bpath.is_file():
with bpath.open() as bfile:
with bpath.open(encoding='utf-8') as bfile:
boards = []
for line in bfile:
if line.startswith("#define BOARD_"):