Revert "black: re-format"
This reverts commit 5731818de0ce446ceaafc7e75ae39da1b69942ae.
Signed-off-by: George Keishing <gkeishin@in.ibm.com>
Change-Id: Ie61cdc8c7f2825b0d9d66be87a6a3a058de2b372
diff --git a/templates/python_pgm_template b/templates/python_pgm_template
index e2ded37..fcd0c6f 100644
--- a/templates/python_pgm_template
+++ b/templates/python_pgm_template
@@ -1,17 +1,19 @@
#!/usr/bin/env python3
-from gen_arg import *
from gen_print import *
+from gen_arg import *
from gen_valid import *
parser = argparse.ArgumentParser(
- usage="%(prog)s [OPTIONS]",
+ usage='%(prog)s [OPTIONS]',
description="%(prog)s will...",
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
- prefix_chars="-+",
-)
+ prefix_chars='-+')
-parser.add_argument("--whatever", default="", help="bla, bla.")
+parser.add_argument(
+ '--whatever',
+ default='',
+ help='bla, bla.')
# Populate stock_list with options we want.
stock_list = [("test_mode", 0), ("quiet", 0), ("debug", 0)]
@@ -40,6 +42,7 @@
def main():
+
gen_setup()
# Your code here.