This commit is contained in:
2019-09-17 01:54:45 -04:00
parent b9c78fa453
commit b23dcc6a8e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ class TaskFilter(BaseAction):
self.bashfile = bashfile
def __str__(self):
return f"{self.source}"
return f"{str(click.style(self.source[:1], fg='yellow'))}{self.source[1:]}"
def __hash__(self):
return hash((self.bashfile, self.source))
+1 -1
View File
@@ -265,7 +265,7 @@ def entrypoint(
if dep.is_filter:
dep = click.style(str(dep), fg="yellow")
deps.append(str(dep))
deps = f"\n {click.style('+', fg='yellow', bold=True)} {eng_join(deps, conj='and finally')}."
deps = f"\n {click.style('+', fg='yellow', bold=True)} {eng_join(deps, conj='&')}."
else:
deps = ""
colon = "" if not deps else ""