[pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
This commit is contained in:
pre-commit-ci[bot] 2022-06-10 07:36:42 +00:00
parent 3915cbf039
commit e6ba8015ee
3 changed files with 9 additions and 6 deletions

View file

@ -2,7 +2,7 @@ from flask import Flask
app = Flask(__name__)
#Returns "Hello World!" when "/" is accessed by the user
# Returns "Hello World!" when "/" is accessed by the user
@app.route("/")
def hello():
return "Hello World!"