From 221a8ef05889d777ce36c4f8582ff6d62116ca2b Mon Sep 17 00:00:00 2001 From: Martin Czygan Date: Tue, 8 Jun 2021 21:08:19 +0200 Subject: cli: cleanup --- python/refcat/cli.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'python') diff --git a/python/refcat/cli.py b/python/refcat/cli.py index ac308b7..2aff453 100644 --- a/python/refcat/cli.py +++ b/python/refcat/cli.py @@ -77,9 +77,9 @@ def files(): for name in names: klass = Register.get_task_cls(name) try: - print("{:30s}{}".format(name, klass().output().path)) + print("{:40s}{}".format(name, klass().output().path)) except AttributeError: - print("{:30s}".format(name)) + print("{:40s}".format(name)) def cat(*args): @@ -138,8 +138,6 @@ def deps(*args): """ if len(args) == 0: raise ValueError("deps failed: task name required") - # task_class = find_task_class(args[0]) - # dump_deps(task_class()) parser = CmdlineParser(sys.argv[2:]) obj = parser.get_task_obj() dump_deps(obj) -- cgit v1.2.3