When doing python3 Webhook.py (this is the file), it gives me the error: File \"\", line 1 (%X - %x) ^ SyntaxError: invalid syntax
python3 Webhook.py
File \"\", line 1 (%X - %x) ^ SyntaxError: invalid syntax
it might also be that you have a python 3.8 compatible way of string formating, such as:
f"print{count=}"
which is not compatible with 3.6, 3.7.
In that case, you can either decide to require the user to upgrade to python3.8, or downgrade your code.