Basically the title. Using PyCharm 2023.3.3 I'm not able to see the data of polars DataFrames.
As an example, I've a simple DataFrame like this:
print(ids_df)
shape: (1, 4)
┌─────────────────────────────────┬────────────────────┬────────────────────────────┬───────┐
│ uuid ┆ cod ┆ tms_created ┆ valid │
│ --- ┆ --- ┆ --- ┆ --- │
│ str ┆ str ┆ datetime[ns] ┆ bool │
╞═════════════════════════════════╪════════════════════╪════════════════════════════╪═══════╡
│ UUID4 ┆ CODE_1 ┆ 2025-09-29 09:10:16.219874 ┆ true │
└─────────────────────────────────┴────────────────────┴────────────────────────────┴───────┘
But while debugging the function "view as DataFrame" shows nothing:

Is there something that can be set on Format to see it?