Skip to content

Commit

Permalink
[CI] Format code according to conventions (#24095)
Browse files Browse the repository at this point in the history
Format code according to conventions
  • Loading branch information
qmk-bot authored Jul 11, 2024
1 parent 1b8b680 commit 2e671cf
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions util/ci/index_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,20 @@ def _ansi2html_styles():
return "\n".join([str(s) for s in styles])


def _git_log(count = 4):
def _git_log(count=4):
os.chdir(qmk_firmware_dir)
ret = _run(f"git log -n {count} --color=always --no-merges --topo-order --stat").stdout.strip()
os.chdir(orig_cwd)
return ret


def _git_describe():
os.chdir(qmk_firmware_dir)
ret = _run("git describe --tags --always --dirty").stdout.strip()
os.chdir(orig_cwd)
return ret


def _git_revision():
os.chdir(qmk_firmware_dir)
ret = _run("git rev-parse HEAD").stdout.strip()
Expand Down Expand Up @@ -88,22 +90,18 @@ def _git_revision():

txt = KEYBOARD_PATTERN.sub("", KEYMAP_PATTERN.sub("", txt)).strip()

failures.append(
{
"stdout": txt,
"keyboard": m_kb.group("keyboard"),
"keymap": m_km.group("keymap"),
}
)
failures.append({
"stdout": txt,
"keyboard": m_kb.group("keyboard"),
"keymap": m_km.group("keymap"),
})

template = env.get_template("index.html.j2")
print(
template.render(
ansi2html_styles=_ansi2html_styles(),
git_log=_git_log(),
git_describe=_git_describe(),
git_revision=_git_revision(),
binaries=binaries,
failures=failures,
)
)
print(template.render(
ansi2html_styles=_ansi2html_styles(),
git_log=_git_log(),
git_describe=_git_describe(),
git_revision=_git_revision(),
binaries=binaries,
failures=failures,
))

0 comments on commit 2e671cf

Please sign in to comment.