We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33dc0b3 commit 7447607Copy full SHA for 7447607
pandas/_libs/hashtable_class_helper.pxi.in
@@ -789,7 +789,8 @@ cdef class StringHashTable(HashTable):
789
labels[i] = na_sentinel
790
else:
791
# 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))
+ v = get_c_string(<str>val) if val.isprintable() else \
793
+ get_c_string(<str>repr(val))
794
vecs[i] = v
795
796
# compute
0 commit comments