8000 trying different import order · rusty0209/botbuilder-python@9e47e4c · GitHub
[go: up one dir, main page]

Skip to content

Commit 9e47e4c

Browse files
committed
trying different import order
1 parent bd62771 commit 9e47e4c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libraries/botframework-connector/tests/test_skill_validation.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
from asyncio import Future
33
from unittest.mock import Mock, DEFAULT
44
import aiounittest
5-
from ddt import data, ddt, unpack
65

76
from botframework.connector.auth import (
87
AuthenticationConstants,
@@ -11,6 +10,8 @@
1110
SkillValidation,
1211
)
1312

13+
from ddt import data, ddt, unpack
14+
1415
def future_builder(return_val: object) -> Future:
1516
result = Future()
1617
result.set_result(return_val)

0 commit comments

Comments
 (0)
0