Skip to content

Commit

Permalink
Update app.py
Browse files Browse the repository at this point in the history
  • Loading branch information
niklas1531 authored Jun 21, 2024
1 parent 5759e6e commit 91dade6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

import requests

import os

os.system('ls')

app = Flask(__name__)
app.debug = True
app.secret_key = 'verysecretkey'
Expand Down Expand Up @@ -39,4 +43,4 @@ def login():
def logout():
if login_session.get('username') is not None:
login_session.pop('username', None)
return redirect(url_for('login'))
return redirect(url_for('login'))

0 comments on commit 91dade6

Please sign in to comment.