79537325

Date: 2025-03-26 21:45:37
Score: 1.5
Natty:
Report link
cleanstring = response.text.replace("'","")

My problem was that the response.text is immutable, so I needed to create a new variable and assign the cleaned string to it.
Then I used cleanstring in my call where response.text would have gone.

Reasons:
  • Blacklisted phrase (0.5): I need
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Myles