Skip to content

Commit 5da2343

Browse files
Removed trailing whitespaces
1 parent 5d9edbf commit 5da2343

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

pandas/core/indexes/frozen.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,11 @@ def _disabled(self, *args, **kwargs) -> NoReturn:
110110
raise TypeError(f"'{type(self).__name__}' does not support mutable operations.")
111111

112112
def __str__(self) -> str:
113-
return pprint_thing(self, quote_strings=True, escape_chars=("\t", "\r", "\n","'"))
113+
return pprint_thing(
114+
self,
115+
quote_strings=True,
116+
escape_chars=("\t", "\r", "\n", "'")
117+
)
114118

115119
def __repr__(self) -> str:
116120
return f"{type(self).__name__}({self!s})"

0 commit comments

Comments
 (0)