From 5f88bfdee86bd88c6fb1bf282acf73c3dfef0c6f Mon Sep 17 00:00:00 2001
From: Matt Traudt <sirmatt@ksu.edu>
Date: Thu, 5 Apr 2018 21:32:14 -0400
Subject: [PATCH] Don't need to assign to a variable

---
 sbws/commands/init.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sbws/commands/init.py b/sbws/commands/init.py
index 3fb695f0..2f9683d8 100644
--- a/sbws/commands/init.py
+++ b/sbws/commands/init.py
@@ -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_):
-- 
GitLab