diff options
author | davidovski <david@davidovski.xyz> | 2022-01-18 23:59:49 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-01-18 23:59:49 +0000 |
commit | 4d61440c07613661a569a76ba54d0c7d27de1efe (patch) | |
tree | 24e3a543108a50f6e129be3070d8d62fcf6874e5 /src | |
parent | d8c1c620465785b42747a6796b9a872578742e37 (diff) |
fixed blue text at the end
Diffstat (limited to 'src')
-rw-r--r-- | src/xi.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -53,7 +53,8 @@ def print_stats(conf, opts): for repo,count in pkg_count.items(): print(f"\t{colors.BLUE}{repo}: {colors.LIGHT_BLUE}{count}") - print(colors.CYAN + "================") + print(colors.RESET) + def main(): opts = options.parse_args() |