79286188

Date: 2024-12-16 22:17:50
Score: 2.5
Natty:
Report link

The problem was in the setData function of my PandasModel. I was using values instead of iloc.

self.data_frame.iloc[index.row(), index.column()] = value

self.data_frame.values[index.row(), index.column()] = value

Reasons:
  • Low length (0.5):
  • No code block (0.5):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: Tadpole