Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 957cfad

Browse files
committedFeb 6, 2025·
Fix format error
1 parent 32f8801 commit 957cfad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎tests/test_async_client.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ async def test_deprecated_fn(self) -> None:
7373

7474
async def test_moved_fn(self) -> None:
7575
with self.assertRaises(ValueError):
76-
# type: ignore
77-
await self.co.list_connectors("dummy", dummy="dummy")
76+
await self.co.list_connectors("dummy", dummy="dummy") # type: ignore
77+
7878

7979
@unittest.skipIf(os.getenv("CO_API_URL") is not None, "Doesn't work in staging.")
8080
async def test_generate(self) -> None:

0 commit comments

Comments
 (0)
Please sign in to comment.