Skip to content

Commit fc15b31

Browse files
committed
Correction of a small error regarding a misnaming of a command (load_model => load).
1 parent 75a95a5 commit fc15b31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

client.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,12 +352,12 @@ def main():
352352
elif command =="list":
353353
list_models()
354354

355-
elif command == "load_model":
355+
elif command == "load":
356356
if len(sys.argv) < 3:
357357
print(f"{RED}Error: You must specify the model name.{RESET}")
358358
else:
359359
load_model(sys.argv[2])
360-
360+
361361
elif command == "unload":
362362
unload_model()
363363

@@ -386,4 +386,4 @@ def main():
386386

387387
# Launching the main function: program start
388388
if __name__ == "__main__":
389-
main()
389+
main()

0 commit comments

Comments
 (0)