diff options
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) |