fix run-breaking typo (#1532)

This commit is contained in:
Damian Stewart 2022-11-22 14:27:23 +01:00 committed by GitHub
commit 0d35a67e9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,7 +155,7 @@ class ModelCache(object):
for name in models:
line = f'{name:25s} {models[name]["status"]:>10s} {models[name]["description"]}'
if models[name]['status'] == 'active':
line = f'\033[1m{line}\033[0m')
line = f'\033[1m{line}\033[0m'
print(line)
def del_model(self, model_name:str) -> None: