typo fix
This commit is contained in:
parent
d209453903
commit
c5b480374a
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
@ -12,7 +12,7 @@ conn = sqlite3.connect(db_path, check_same_thread=False)
|
||||||
c = conn.cursor()
|
c = conn.cursor()
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
key = str(uuid.uuid4.hex)
|
key = str(uuid.uuid4().hex)
|
||||||
app.secret_key = key
|
app.secret_key = key
|
||||||
socketio = SocketIO(app)
|
socketio = SocketIO(app)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue