Skip to content

Commit d4653e6

Browse files
authored
Merge pull request #1636 from codeflash-ai/codeflash/optimize-pr1543-2026-02-21T01.59.07
⚡️ Speed up function `show_text_non_python` by 18% in PR #1543 (`fix/java/line-profiler`)
2 parents ff60f3a + 6170616 commit d4653e6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

codeflash/code_utils/tabulate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -705,7 +705,7 @@ def tabulate(
705705
# format rows and columns, convert numeric values to strings
706706
cols = list(izip_longest(*list_of_lists))
707707
numparses = _expand_numparse(disable_numparse, len(cols))
708-
coltypes = [_column_type(col, numparse=np) for col, np in zip(cols, numparses)]
708+
coltypes = [_column_type(col, has_invisible, numparse=np) for col, np in zip(cols, numparses)]
709709
if isinstance(floatfmt, str): # old version
710710
float_formats = len(cols) * [floatfmt] # just duplicate the string to use in each column
711711
else: # if floatfmt is list, tuple etc we have one per column

0 commit comments

Comments
 (0)