Skip to content
This repository was archived by the owner on Jul 28, 2024. It is now read-only.

Commit d9594e0

Browse files
committed
there may be errors but don't worry
1 parent fc62daa commit d9594e0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

terminal.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ def supercommand(command):
77
# If the password is correct, you can use the commands above:
88
# Type command is repeating what you wrote.
99
if command == "type":
10+
input("Type something:")
1011
return input()
1112
# Superexit command let's you exit the super command without ending the application.
1213
elif command == "superexit":
1314
return "Superexiting..."
14-
ßß
1515
# I integrated my own calculator program named PMDMcalc in PyTerm.
1616

1717
def pmdmcalc():
@@ -71,7 +71,7 @@ def handle_command(command):
7171
return pmdmcalc()
7272
# Told about super at the start.
7373
elif command == "super":
74-
return
74+
return supercommand(command)
7575
# If there's no commands that you entered, it shows an error.
7676
else:
7777
return "PyTerm: unknown command"

0 commit comments

Comments
 (0)