Skip to content

Commit 190ae98

Browse files
committed
lint
1 parent 2095970 commit 190ae98

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

packages/toolbox-core/src/toolbox_core/sync_client.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
from typing import Any, Callable, Mapping, Optional, Union, Awaitable, TypeVar
1615
import asyncio
17-
from aiohttp import ClientSession
1816
from threading import Thread
17+
from typing import Any, Awaitable, Callable, Mapping, Optional, TypeVar, Union
18+
19+
from aiohttp import ClientSession
1920

20-
from .sync_tool import ToolboxSyncTool
2121
from .client import ToolboxClient
22+
from .sync_tool import ToolboxSyncTool
2223

2324
T = TypeVar("T")
2425

packages/toolbox-core/tests/test_sync_e2e.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
import pytest
15+
1516
from toolbox_core.sync_client import ToolboxSyncClient
1617
from toolbox_core.sync_tool import ToolboxSyncTool
1718

0 commit comments

Comments
 (0)