You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 31, 2024. It is now read-only.
This doesn't seem to be working properly with colors, where just doing puts(join(cs)) works fine. Am I missing something here? The text is outputted, but not colored properly.
skills_text = []
for skill in (x for x in job['tags'] if x['tag_type'] == "SkillTag"):
if skill['id'] in user_skill_ids:
skills_text.append(colored.yellow(skill['name']))
else:
skills_text.append(colored.green(skill['name']))
cs = [str(x) for x in skills_text]
...
puts(join(cs))
col = 50
puts(columns([(colored.yellow("SKILLS")),col], [(colored.red("DESCRIPTION")), col]))
puts(columns([(join(cs, conj="", separator="")), col], [desc_text, col]))
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This doesn't seem to be working properly with colors, where just doing
puts(join(cs))
works fine. Am I missing something here? The text is outputted, but not colored properly.The text was updated successfully, but these errors were encountered: