From 560b9188152baa3a3025bee281e569af38e18896 Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Mon, 17 Feb 2020 22:57:20 -0800 Subject: [PATCH] Remove this unused argv function. --- voussoirkit/pipeable.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/voussoirkit/pipeable.py b/voussoirkit/pipeable.py index e88f4f7..8a8f21d 100644 --- a/voussoirkit/pipeable.py +++ b/voussoirkit/pipeable.py @@ -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: