79368003

Date: 2025-01-18 21:38:32
Score: 0.5
Natty:
Report link

For me, the problem was that I forgot to call read() on the IO object

Basically I had to turn

with open(myFilePath, "r") as myFile:
        return myFile

into

with open(myFilePath, "r") as myFile:
        return myFile.read()
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: SomeGenericDev