File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1414
1515import os
1616import shutil
17- from typing import Dict , Any , List
17+ from typing import Any , Dict , List
1818
1919# If extensions (or modules to document with autodoc) are in another directory,
2020# add these directories to sys.path here. If the directory is relative to the
Original file line number Diff line number Diff line change 33# Copyright (c) IPython Development Team.
44# Distributed under the terms of the Modified BSD License.
55
6- from jupyter_client .channelsabc import HBChannelABC
76from typing import List
87
8+ from jupyter_client .channelsabc import HBChannelABC
9+
910# -----------------------------------------------------------------------------
1011# Channel classes
1112# -----------------------------------------------------------------------------
Original file line number Diff line number Diff line change 1313from binascii import b2a_hex
1414from collections import deque
1515from io import StringIO , TextIOBase
16- from typing import Any , Optional , Callable
16+ from typing import Any , Callable , Optional
1717from weakref import WeakSet
1818
1919import zmq
Original file line number Diff line number Diff line change @@ -465,7 +465,8 @@ def init_io(self):
465465
466466 handler .stream = TextIOWrapper (
467467 FileIO (
468- sys .stderr ._original_stdstream_copy , "w" # type:ignore[attr-defined]
468+ sys .stderr ._original_stdstream_copy ,
469+ "w" , # type:ignore[attr-defined]
469470 )
470471 )
471472 if self .displayhook_class :
You can’t perform that action at this time.
0 commit comments