Skip to content

Commit fc10655

Browse files
committed
Fixed gitignore and removed print
1 parent d9a8c1d commit fc10655

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,4 @@ dmypy.json
131131

132132
# Pyre type checker
133133
.pyre/
134+
.idea/

app/routers/event.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ async def eventedit(request: Request):
2626
@router.post("/edit")
2727
async def create_event(request: Request, session=Depends(get_db)):
2828
data = await request.form()
29-
print(data)
3029
title = data['title']
3130
content = data['description']
3231
start = dt.strptime(data['start_date'] + ' ' + data['start_time'],

0 commit comments

Comments
 (0)