Skip to content

Commit 0d345e5

Browse files
committed
added gitignore
1 parent 9ee7457 commit 0d345e5

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.pyc
2+
.vscode/
3+
venv/
4+
__pycache__
5+
.DS_Store/
6+
migrations/

app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def create_response(data={}, status=200, message=''):
2828

2929
@app.route('/')
3030
def my_first_route():
31-
return create_response(data='hello world!')
31+
return create_response('hello world!')
3232

3333
@app.route('/mirror/<name>')
3434
def my_second_route(name):

0 commit comments

Comments
 (0)