8000 STY: concat strings by ShaharNaveh · Pull Request #30979 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

STY: concat strings #30979

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 13, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update pandas/io/formats/html.py
Co-Authored-By: William Ayd <william.ayd@icloud.com>
  • Loading branch information
ShaharNaveh and WillAyd authored Jan 13, 2020
commit 5e9809fd1404d0b0896cac4c091f98a06663affa
2 changes: 1 addition & 1 deletion pandas/io/formats/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def _write_table(self, indent: int = 0) -> None:
self.classes = self.classes.split()
if not isinstance(self.classes, (list, tuple)):
raise TypeError(
f"classes must be a string, list, "
"classes must be a string, list, "
f"or tuple, not {type(self.classes)}"
)
_classes.extend(self.classes)
Expand Down
0