Skip to content

Commit b8319cf

Browse files
committed
Remove unused git imports from generate_board_config.py
The 'import git' and 'from git import RemoteProgress' were unused (copy-pasted from get_remote_modules.py which does use them). This caused CI failures because gitpython is not installed in the GitHub Actions runner environment. Also removed unused Tuple import.
1 parent 406a4cc commit b8319cf

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/custompios_core/generate_board_config.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
import os
33
import yaml
44
from pathlib import Path
5-
from typing import Tuple, Optional, Dict, Any, cast
6-
import git
7-
from git import RemoteProgress
5+
from typing import Optional, Dict, Any, cast
86
from common import get_image_config
97
import argparse
108
import sys

0 commit comments

Comments
 (0)