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

Commit 8b317ee

Browse files
committed
comments removing
1 parent c961bd1 commit 8b317ee

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

terminal.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,10 @@ def pmdmcalc():
7171

7272
def handle_command(command):
7373
command = command.strip().lower()
74-
# Help command lets you see all the commands in PyTerm.
7574
if command == "help":
7675
return "Available commands: help, exit, info, pmdm, super"
77-
# Exit command helps you exit the PyTerm application.
7876
elif command == "exit":
7977
return "Exiting..."
80-
# Info command lets you know the version of PyTerm and other data.
8178
elif command == "info":
8279
return """
8380
PPPP y y TTTTT EEEE RRRR M M
@@ -92,13 +89,10 @@ def handle_command(command):
9289
Initial Day Of Creation: Twenty-Third April 2024
9390
Operating System: MacOS
9491
"""
95-
# PMDM command lets you use PMDMcalc directly from PyTerm.
9692
elif command == "pmdm":
9793
return pmdmcalc()
98-
# Told about super at the start.
9994
elif command == "super":
10095
return supercommand()
101-
# If there's no commands that you entered, it shows an error.
10296
else:
10397
return "PyTerm: unknown command"
10498

0 commit comments

Comments
 (0)