fix linting errors

This commit is contained in:
helgeerbe 2023-08-10 13:03:51 +02:00
parent 9475a78211
commit c8a561dbd7

View File

@ -3,6 +3,7 @@
# Copyright (C) 2022 Thomas Basler and others # Copyright (C) 2022 Thomas Basler and others
# #
import pkg_resources import pkg_resources
from dulwich import porcelain
Import("env") Import("env")
@ -13,7 +14,6 @@ missing_pkgs = required_pkgs - installed_pkgs
if missing_pkgs: if missing_pkgs:
env.Execute('"$PYTHONEXE" -m pip install dulwich') env.Execute('"$PYTHONEXE" -m pip install dulwich')
from dulwich import porcelain
def get_firmware_specifier_build_flag(): def get_firmware_specifier_build_flag():
try: try:
@ -28,8 +28,8 @@ def get_firmware_specifier_build_flag():
branch_name = "" branch_name = ""
build_flag = "-D AUTO_GIT_HASH=\\\"" + build_version + "\\\" " build_flag = "-D AUTO_GIT_HASH=\\\"" + build_version + "\\\" "
build_flag += "-D AUTO_GIT_BRANCH=\\\"" + branch_name + "\\\"" build_flag += "-D AUTO_GIT_BRANCH=\\\"" + branch_name + "\\\""
print ("Firmware Revision: " + build_version) print("Firmware Revision: " + build_version)
print ("Firmware build on branch: " + branch_name) print("Firmware build on branch: " + branch_name)
return (build_flag) return (build_flag)
env.Append( env.Append(