Skip to content
This repository has been archived by the owner on May 13, 2022. It is now read-only.

Commit

Permalink
Update main.py
Browse files Browse the repository at this point in the history
  • Loading branch information
NotReeceHarris committed Jul 9, 2021
1 parent f9ce2fc commit 3b2a2dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
app = Flask(__name__)
assets = Environment(app)
app.permanent_session_lifetime = datetime.timedelta(days=365)
app.secret_key = 'abc123#'#''.join(random.choice(string.ascii_letters) for i in range(100)).encode('ascii')
app.secret_key = ''.join(random.choice(string.ascii_letters) for i in range(100)).encode('ascii')

from sqlExecuter import SqlExecutionApi
app.register_blueprint(SqlExecutionApi)
Expand Down

0 comments on commit 3b2a2dd

Please sign in to comment.