From 61b6831e62598e8f91edd0365f8b373e2588422a Mon Sep 17 00:00:00 2001 From: Thomas Karl Pietrowski Date: Sat, 9 Dec 2017 01:21:58 +0100 Subject: [PATCH] CuraApplication: Making it one line again Don't know why the pylint marker is here.. --- cura/CuraApplication.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 069b80101b..4af5e4f88a 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -630,8 +630,7 @@ class CuraApplication(QtApplication): @classmethod def preStartUp(cls): # Peek the arguments and look for the 'single-instance' flag. - parser = argparse.ArgumentParser(prog = "cura", - add_help = False) # pylint: disable=bad-whitespace + parser = argparse.ArgumentParser(prog = "cura", add_help = False) # pylint: disable=bad-whitespace CuraApplication.addCommandLineOptions(parser) # Important: It is important to keep this line here! # In Uranium we allow to pass unknown arguments to the final executable or script.