Skip to content

Commit 87beca3

Browse files
PEP8: fix line length
1 parent 1efa51c commit 87beca3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/src/hash.pyx

+2-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ def hash_object_array(ndarray[object] arr, object key, object encoding='utf8'):
7171
data = <bytes>str(val).encode(encoding)
7272

7373
else:
74-
raise TypeError("{} of type {} is not a valid type for "
75-
"hashing, must be string or null".format(val, type(val)))
74+
raise TypeError("{} of type {} is not a valid type for hashing, "
75+
"must be string or null".format(val, type(val)))
7676

7777
l = len(data)
7878
lens[i] = l

0 commit comments

Comments
 (0)