Remove this unused argv function.

This commit is contained in:
Ethan Dalool 2020-02-17 22:57:20 -08:00
parent 267ae16c5d
commit 560b918815

View file

@ -15,11 +15,6 @@ class PipeableException(Exception):
class NoArguments(PipeableException):
pass
def argv(index):
try:
return sys.argv[index]
except IndexError:
return None
def multi_line_input(prompt=None):
if prompt is not None and not IN_PIPE: