Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
xerbalind committed Feb 20, 2024
1 parent 12e87ca commit 0df3735
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion backend/.flake8
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[flake8]
extend-ignore = E203
exclude = .git,__pycache__,
exclude = .git,__pycache__,venv
2 changes: 2 additions & 0 deletions backend/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@

app = Flask(__name__)


@app.route("/")
def hello_world():
return "<p>Hello, World!</p>"


if __name__ == "__main__":
app.run(debug=True)

0 comments on commit 0df3735

Please sign in to comment.