Skip to content

Commit 053321a

Browse files
committed
lint
1 parent 30ac85d commit 053321a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

requirements.dev.txt

Whitespace-only changes.

test/synchronicity_test.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import concurrent.futures
33
import inspect
44
from typing import Coroutine
5-
from unittest.mock import MagicMock, ANY
5+
from unittest.mock import MagicMock
66

77
import pytest
88
import time
@@ -493,9 +493,9 @@ async def get_self(self):
493493
assert isinstance(self_from_aio_interface, BlockingFoo)
494494

495495

496-
497496
def test_no_input_translation(monkeypatch):
498497
s = Synchronizer()
498+
499499
@s.create_blocking
500500
def does_input_translation(arg: float) -> str:
501501
return str(arg)
@@ -517,6 +517,7 @@ async def without_input_translation(arg: float) -> str:
517517

518518
def test_no_output_translation(monkeypatch):
519519
s = Synchronizer()
520+
520521
@s.create_blocking
521522
def does_input_translation(arg: float) -> str:
522523
return str(arg)

0 commit comments

Comments
 (0)