Skip to content

Commit

Permalink
Merge pull request #8 from lanbinshijie/dev
Browse files Browse the repository at this point in the history
fix: Fix Models-cant-import Bug
  • Loading branch information
lanbinshijie authored Apr 12, 2023
2 parents 9b1070d + cbf244c commit c4711bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -127,3 +127,6 @@ dmypy.json

# Pyre type checker
.pyre/

.vscode
.vscode/*
3 changes: 2 additions & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ def IceShell():
commandN = input(Colors.RED + extra + "IShell> " + Colors.END)
command = commandN.split(" ")
if command[0] in ProgramInfo.registered_modules or "*" in ProgramInfo.registered_modules:
ExecuteModel(" ".join(command[1:]), command[0])
ExecuteModel(" ".join(command[1:]), command[0]) # 这个代码是不是有点问题?
# ExecuteModel("",commandN)
elif command[0] == "q":
print("Bye~")
exit(0)
Expand Down

0 comments on commit c4711bb

Please sign in to comment.