Skip to content

Commit

Permalink
feat: i might have solved the fucking issue
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonNotJson committed Sep 6, 2023
1 parent 6151076 commit e5a41f1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
4 changes: 1 addition & 3 deletions src/lambda/delete-thread/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@

@resp_handler
def delete_thread(board_id, thread_id, uid):
print(f"Board ID: {board_id}")
print(f"Thread ID: {thread_id}")
print(f"User ID: {uid}")

table.delete_item(
Key={
"board_id": board_id,
Expand Down
4 changes: 0 additions & 4 deletions src/lambda/patch-thread/index.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@
@resp_handler
def patch_thread(board_id, uid, thread_id, thread):

print(f"Board ID: {board_id}")
print(f"Thread ID: {thread_id}")
print(f"User ID: {uid}")

dt_now = datetime.now().strftime('%Y-%m-%dT%H:%M:%S.%f')[:-3] + 'Z'
table.update_item(
Key={
Expand Down

0 comments on commit e5a41f1

Please sign in to comment.