Skip to content

Commit

Permalink
fix(dataFrameShow): Remove extra new lines
Browse files Browse the repository at this point in the history
  • Loading branch information
tools4origins committed Sep 26, 2021
1 parent f0e8e8d commit 1d340f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pysparkling/sql/internals.py
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ def horizontal_show(rows, cols, truncate, min_col_width):
output += sep
output += _generate_show_layout('|', padded_header)
output += sep
output += '\n'.join(_generate_show_layout('|', row) for row in padded_rows)
output += ''.join(_generate_show_layout('|', row) for row in padded_rows)
output += sep
return output

Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ max-line-length = 119
[tool:pytest]
addopts = --doctest-modules --cov=pysparkling --cov-report=html --cov-branch
testpaths = pysparkling
doctest_optionflags = ALLOW_UNICODE NORMALIZE_WHITESPACE

[pycodestyle]
max-line-length=119
Expand Down Expand Up @@ -47,4 +46,4 @@ order_by_type = False
case_sensitive = False
multi_line_output = 5
force_sort_within_sections = True
skip = versioneer.py
skip = versioneer.py

0 comments on commit 1d340f9

Please sign in to comment.