Skip to content

Commit c99b904

Browse files
committed
removed unused function
1 parent 601ca8c commit c99b904

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

src/gardenlinux/github/__main__.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -549,19 +549,6 @@ def download_all_metadata_files(version, commitish):
549549
return [str(artifact) for artifact in local_dest_path.iterdir()]
550550

551551

552-
def _parse_match_section(pkg_list: list):
553-
output = ""
554-
for pkg in pkg_list:
555-
# If is dict, the package has additional information relevant for release notes
556-
if isinstance(pkg, dict):
557-
pkg_string = next(iter(pkg))
558-
output += f"\n{pkg_string}:\n"
559-
for item in pkg[pkg_string]:
560-
for k, v in item.items():
561-
output += f" * {k}: {v}\n"
562-
return output
563-
564-
565552
def release_notes_changes_section(gardenlinux_version):
566553
"""
567554
Get list of fixed CVEs, grouped by upgraded package.

0 commit comments

Comments
 (0)