fix: rework zipping of files, better build CI

Thanks to @npv12 for this PR!
This commit is contained in:
Pranav Santhosh
2022-12-11 10:39:45 +05:30
committed by GitHub
parent 35597b98d7
commit f523cb1881
6 changed files with 146 additions and 110 deletions

View File

@@ -7,9 +7,9 @@ ctp_colors = {
"macchiato": Flavour.macchiato()
}
def get_all_accent(flavor):
def get_all_accent():
accent = {}
for key, value in flavor.__dict__.items():
for key, value in Flavour.latte().__dict__.items():
if key not in ['white', 'black', 'text', 'subtext0', 'subtext1', 'overlay0', 'overlay1', 'overlay2', 'surface0', 'surface1', 'surface2', 'base', 'mantle', 'crust']:
accent[key] = value