Skip to content

Commit 219779e

Browse files
committed
remove forgotten exclamation point
1 parent 5b7e990 commit 219779e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/strings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2289,7 +2289,7 @@ def cat(self, others=None, sep=None, na_rep=None, join=None):
22892289
or (x.dtype == 'float' and x.isna().all()))
22902290
for x in others):
22912291
raise TypeError('Can only concatenate list-likes containing only '
2292-
'strings (or missing values)!')
2292+
'strings (or missing values)')
22932293

22942294
if join is None and warn:
22952295
warnings.warn("A future version of pandas will perform index "

0 commit comments

Comments
 (0)