79329390

Date: 2025-01-04 18:31:42
Score: 1
Natty:
Report link

I think that you might need to load credentials.json as a dictionary in python because it ix expecting a dictionary but you instead are passing a set.

This addition to code might work:

import json
with open("credentials.json", "r") as f:
    credz = json.load(f)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mehul Patwari