File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ def check_ipython() -> None:
15
15
if IPython :
16
16
IPython_version = tuple (map (int , IPython .__version__ .split ('.' ))) # type: ignore
17
17
if IPython_version < (7 , 0 , 0 ):
18
- raise RuntimeError (f'You are using IPython { IPython .__version__ } while we require ' # type: ignore
19
- '7.0.0+, please update IPython' )
18
+ raise RuntimeError (f'You are using IPython { IPython .__version__ } ' # type: ignore
19
+ 'while we require 7.0.0+, please update IPython' )
20
20
21
21
22
22
def check_patch_tornado () -> None :
@@ -25,7 +25,8 @@ def check_patch_tornado() -> None:
25
25
if 'tornado' in sys .modules :
26
26
import tornado .concurrent
27
27
if asyncio .Future not in tornado .concurrent .FUTURES :
28
- tornado .concurrent .FUTURES = tornado .concurrent .FUTURES + (asyncio .Future , ) # type: ignore
28
+ tornado .concurrent .FUTURES = \
29
+ tornado .concurrent .FUTURES + (asyncio .Future , ) # type: ignore
29
30
30
31
31
32
def just_run (coro : Awaitable ) -> Any :
You can’t perform that action at this time.
0 commit comments