When doing python3 Webhook.py
(this is the file), it gives me the error:
File \"
I just spent 1 hour reviewing my code with the same issue. In my case I started removing parts of the code to narrow down the problem.
Finally I to the root cause of the problem.
in my case I was printing an f"string" and inside the f string I had a space in the name of the variable I was calling example print(f"This is a statement {Var 23} "
That space, generated my problem.
I hope this helps :)