diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-03-05 20:29:05 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2019-03-05 20:29:05 -0500 |
commit | 201c4a60e4b8af56d9c02a3675d1443ba4171c89 (patch) | |
tree | 07f9f6345e6c67e60e86407b9cb4ba4dc0e94f66 /lib/sqlalchemy/util/langhelpers.py | |
parent | 66373c58118dc70ef59ff60c0516ef158966c47b (diff) | |
download | sqlalchemy-201c4a60e4b8af56d9c02a3675d1443ba4171c89.tar.gz |
run a black run
fix some pep8s that snuck in
Change-Id: Ied282007df30a52d232b1ba88659f2a123ff380f
Diffstat (limited to 'lib/sqlalchemy/util/langhelpers.py')
-rw-r--r-- | lib/sqlalchemy/util/langhelpers.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/sqlalchemy/util/langhelpers.py b/lib/sqlalchemy/util/langhelpers.py index efc950f1d..117a9e229 100644 --- a/lib/sqlalchemy/util/langhelpers.py +++ b/lib/sqlalchemy/util/langhelpers.py @@ -1653,7 +1653,9 @@ def inject_param_text(doctext, inject_params): # TODO: this still wont cover if the code example itself has blank # lines in it, need to detect those via indentation. lines.append(line) - lines.append(doclines.pop(0)) # the blank line following a code example + lines.append( + doclines.pop(0) + ) # the blank line following a code example continue lines.append(line) |