79158859

Date: 2024-11-05 11:21:38
Score: 3
Natty:
Report link

I am also facing similar issue:

enter image description here

mask_t = dataTable["Col1"] == "T"
mask_noTime = dataTable["Time"].isna()
diaTable = dataTable[mask_t & mask_noTime ]
diaTable["Secondary"] = diaTable["Secondary"].fillna("")
diaTable["Primary"] = diaTable["Primary"].fillna("")
diaTable["Direction"].fillna("", inplace=True)
uniqueFigures = diaTable["PlotId"].unique()

for uniqueId in uniqueFigures:
  # do some processing with the unique ID.
  pass

It runs normally without debugging but only facing this issue when trying to debug.

Reasons:
  • Probably link only (1):
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Me too answer (2.5): I am also facing similar issue
  • Low reputation (0.5):
Posted by: Ronak SHAH