Skip to content
Snippets Groups Projects
Commit 5f88bfde authored by Matt Traudt's avatar Matt Traudt
Browse files

Don't need to assign to a variable

parent 8d3617c0
No related branches found
No related tags found
No related merge requests found
......@@ -9,8 +9,8 @@ def gen_parser(sub):
d = 'Initialize a directory so sbws can use it for configuration, '\
'data storage, etc. A common default directory is ~/.sbws but check '\
'the output of sbws -h to verify.'
p = sub.add_parser('init', formatter_class=ArgumentDefaultsHelpFormatter,
description=d)
sub.add_parser('init', formatter_class=ArgumentDefaultsHelpFormatter,
description=d)
def main(args, conf, log_):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment