Skip to content

Commit

Permalink
remove unnecessary imports of asyncio
Browse files Browse the repository at this point in the history
Signed-off-by: Achille Roussel <[email protected]>
  • Loading branch information
achille-roussel committed Jun 4, 2024
1 parent 324133f commit 7ae5255
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/dispatch/experimental/lambda_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ def handler(event, context):
dispatch.handle(event, context, entrypoint="entrypoint")
"""

import asyncio
import base64
import json
import logging
Expand Down
1 change: 0 additions & 1 deletion src/dispatch/flask.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ def read_root():
my_function.dispatch()
"""

import asyncio
import logging
from typing import Optional, Union

Expand Down
1 change: 0 additions & 1 deletion src/dispatch/http.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Integration of Dispatch functions with http."""

import asyncio
import logging
import os
from datetime import timedelta
Expand Down

0 comments on commit 7ae5255

Please sign in to comment.