rename secrets.py to gb_secrets.py

A new Python 3.9 module "secrets" has been added, which breaks the
import command that is supposed to load the local file.
This commit is contained in:
Lephenixnoir 2021-06-06 15:45:19 +02:00
parent 5c07359b35
commit bdb7805d40
Signed by: Lephenixnoir
GPG Key ID: 1BBA026E13FC0495
3 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,2 +1,2 @@
__pycache__/
secrets.py
gb_secrets.py

2
app.py
View File

@ -1,5 +1,5 @@
from flask import Flask, request
from secrets import cookie
from gb_secrets import cookie
import requests
import re