Skip to content

Commit 55a44f3

Browse files
committed
style: fix isort import ordering
1 parent d43f109 commit 55a44f3

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/functions_framework/aio/__init__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,11 @@
2727
from cloudevents.http import from_http
2828
from cloudevents.http.event import CloudEvent
2929

30-
from functions_framework import _function_registry, execution_id
31-
from functions_framework import _enable_execution_id_logging
30+
from functions_framework import (
31+
_enable_execution_id_logging,
32+
_function_registry,
33+
execution_id,
34+
)
3235
from functions_framework.exceptions import (
3336
FunctionsFrameworkException,
3437
MissingSourceException,

tests/test_execution_id_async.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# limitations under the License.
1414
import json
1515
import pathlib
16+
1617
from unittest.mock import Mock
1718

1819
import pytest

0 commit comments

Comments
 (0)