Skip to content

Commit 7447607

Browse files
Fix linting error
1 parent 33dc0b3 commit 7447607

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/_libs/hashtable_class_helper.pxi.in

+2-1
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,8 @@ cdef class StringHashTable(HashTable):
789789
labels[i] = na_sentinel
790790
else:
791791
# if ignore_na is False, we also stringify NaN/None/etc.
792-
v = get_c_string(<str>val) if val.isprintable() else get_c_string(<str>repr(val))
792+
v = get_c_string(<str>val) if val.isprintable() else \
793+
get_c_string(<str>repr(val))
793794
vecs[i] = v
794795

795796
# compute

0 commit comments

Comments
 (0)