Skip to content

Commit b4673b8

Browse files
authored
Merge pull request #42 from ElectronicCats/experimental
fix: add filter for firmware cc
2 parents dafe944 + 9c0e5ec commit b4673b8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

catnip_uploader/catnip_uploader.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,8 @@ def get_firmwares(self):
418418
description = self.releases.parse_descriptions()
419419
if description:
420420
for key, value in description.items():
421-
table.add_row(key, value)
421+
if "cc1" in key:
422+
table.add_row(key, value)
422423
else:
423424
LOG_WARNING("No descriptions file found.")
424425
except FileNotFoundError:

0 commit comments

Comments
 (0)