From c4b259368d37cc4562eb1f9fdb4476ab8ebec478 Mon Sep 17 00:00:00 2001 From: "Natalia.Murycheva" Date: Wed, 3 Jul 2024 14:49:08 +0200 Subject: [PATCH] [PyCharm Tables] PY-73641 ... in tables instead of values #PY-73252 Fixed * fixed polars case GitOrigin-RevId: 259d170d79afbddf97a99e62b27685255aaf6d12 --- python/helpers/pydev/_pydevd_bundle/tables/pydevd_polars.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/helpers/pydev/_pydevd_bundle/tables/pydevd_polars.py b/python/helpers/pydev/_pydevd_bundle/tables/pydevd_polars.py index 02bab39a7e11..73fbac0c5520 100644 --- a/python/helpers/pydev/_pydevd_bundle/tables/pydevd_polars.py +++ b/python/helpers/pydev/_pydevd_bundle/tables/pydevd_polars.py @@ -50,6 +50,7 @@ def __create_config(): # type: () -> pl.Config cfg = pl.Config() cfg.set_tbl_cols(-1) # Unlimited + cfg.set_tbl_rows(-1) # Unlimited cfg.set_fmt_str_lengths(MAX_COLWIDTH) # No option to set unlimited, so it's 100_000 return cfg