From c6c7b73cc36053a726434ae7d3953bd2fbdaa652 Mon Sep 17 00:00:00 2001 From: Machinexa2 <60662297+machinexa2@users.noreply.github.com> Date: Mon, 10 Aug 2020 15:22:38 +0545 Subject: [PATCH] small fixes small fixes --- Interlace/interlace.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Interlace/interlace.py b/Interlace/interlace.py index da40da6..792a098 100644 --- a/Interlace/interlace.py +++ b/Interlace/interlace.py @@ -1,6 +1,6 @@ #!/usr/bin/python3 -import sys +from sys import argv from Interlace.lib.core.input import InputParser, InputHelper from Interlace.lib.core.output import OutputHelper, Level @@ -18,7 +18,7 @@ def build_queue(arguments, output, repeat): def main(): parser = InputParser() - arguments = parser.parse(sys.argv[1:]) + arguments = parser.parse(argv[1:]) output = OutputHelper(arguments) output.print_banner()