diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-12-24 12:47:00 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-12-24 12:47:00 -0800 |
| commit | c9b2fa4d314e1d743a8e21c7b5ba85e1cb212e33 (patch) | |
| tree | a80b3cb14adae47901141a37926c5f88297aaf22 | |
| parent | 3fe9eeac1445e63f8d5b12faf56e4c787cadd3b6 (diff) | |
| download | pyramid-c9b2fa4d314e1d743a8e21c7b5ba85e1cb212e33.tar.gz pyramid-c9b2fa4d314e1d743a8e21c7b5ba85e1cb212e33.tar.bz2 pyramid-c9b2fa4d314e1d743a8e21c7b5ba85e1cb212e33.zip | |
PEP8
| -rw-r--r-- | pyramid/scripts/pcreate.py | 2 | ||||
| -rw-r--r-- | pyramid/scripts/prequest.py | 2 | ||||
| -rw-r--r-- | pyramid/scripts/proutes.py | 2 | ||||
| -rw-r--r-- | pyramid/scripts/pserve.py | 2 | ||||
| -rw-r--r-- | pyramid/scripts/pshell.py | 2 | ||||
| -rw-r--r-- | pyramid/scripts/ptweens.py | 2 | ||||
| -rw-r--r-- | pyramid/scripts/pviews.py | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/pyramid/scripts/pcreate.py b/pyramid/scripts/pcreate.py index cfab88160..a6db520ce 100644 --- a/pyramid/scripts/pcreate.py +++ b/pyramid/scripts/pcreate.py @@ -31,7 +31,7 @@ Note: As of Pyramid 1.8, this command is deprecated. Use a specific cookiecutter instead: https://github.com/Pylons/?q=cookiecutter """, - formatter_class = argparse.RawDescriptionHelpFormatter, + formatter_class=argparse.RawDescriptionHelpFormatter, ) parser.add_argument('-s', '--scaffold', dest='scaffold_name', diff --git a/pyramid/scripts/prequest.py b/pyramid/scripts/prequest.py index b74948289..66feff624 100644 --- a/pyramid/scripts/prequest.py +++ b/pyramid/scripts/prequest.py @@ -48,7 +48,7 @@ class PRequestCommand(object): parser = argparse.ArgumentParser( description=textwrap.dedent(description), - formatter_class = argparse.RawDescriptionHelpFormatter, + formatter_class=argparse.RawDescriptionHelpFormatter, ) parser.add_argument( '-n', '--app-name', diff --git a/pyramid/scripts/proutes.py b/pyramid/scripts/proutes.py index cd731946d..80c8238a2 100644 --- a/pyramid/scripts/proutes.py +++ b/pyramid/scripts/proutes.py @@ -250,7 +250,7 @@ class PRoutesCommand(object): ConfigParser = configparser.ConfigParser # testing parser = argparse.ArgumentParser( description=textwrap.dedent(description), - formatter_class = argparse.RawDescriptionHelpFormatter, + formatter_class=argparse.RawDescriptionHelpFormatter, ) parser.add_argument('-g', '--glob', action='store', diff --git a/pyramid/scripts/pserve.py b/pyramid/scripts/pserve.py index 1f66394da..e2d97f5ec 100644 --- a/pyramid/scripts/pserve.py +++ b/pyramid/scripts/pserve.py @@ -52,7 +52,7 @@ class PServeCommand(object): parser = argparse.ArgumentParser( description=textwrap.dedent(description), - formatter_class = argparse.RawDescriptionHelpFormatter, + formatter_class=argparse.RawDescriptionHelpFormatter, ) parser.add_argument( '-n', '--app-name', diff --git a/pyramid/scripts/pshell.py b/pyramid/scripts/pshell.py index d4b2db0ff..83e640c32 100644 --- a/pyramid/scripts/pshell.py +++ b/pyramid/scripts/pshell.py @@ -46,7 +46,7 @@ class PShellCommand(object): parser = argparse.ArgumentParser( description=textwrap.dedent(description), - formatter_class = argparse.RawDescriptionHelpFormatter, + formatter_class=argparse.RawDescriptionHelpFormatter, ) parser.add_argument('-p', '--python-shell', action='store', diff --git a/pyramid/scripts/ptweens.py b/pyramid/scripts/ptweens.py index 076d44fa5..5ca77e52a 100644 --- a/pyramid/scripts/ptweens.py +++ b/pyramid/scripts/ptweens.py @@ -29,7 +29,7 @@ class PTweensCommand(object): """ parser = argparse.ArgumentParser( description=textwrap.dedent(description), - formatter_class = argparse.RawDescriptionHelpFormatter, + formatter_class=argparse.RawDescriptionHelpFormatter, ) parser.add_argument('config_uri', diff --git a/pyramid/scripts/pviews.py b/pyramid/scripts/pviews.py index 0d4c8e201..4d3312917 100644 --- a/pyramid/scripts/pviews.py +++ b/pyramid/scripts/pviews.py @@ -29,7 +29,7 @@ class PViewsCommand(object): parser = argparse.ArgumentParser( description=textwrap.dedent(description), - formatter_class = argparse.RawDescriptionHelpFormatter, + formatter_class=argparse.RawDescriptionHelpFormatter, ) parser.add_argument('config_uri', |
