File tree Expand file tree Collapse file tree 4 files changed +7
-0
lines changed
Expand file tree Collapse file tree 4 files changed +7
-0
lines changed Original file line number Diff line number Diff line change 11"""
22store the current version info of the server.
33"""
4+ from __future__ import annotations
5+
46import re
57
68# Version string must appear intact for hatch versioning
Original file line number Diff line number Diff line change 22
33# Copyright (c) IPython Development Team.
44# Distributed under the terms of the Modified BSD License.
5+ from __future__ import annotations
56
67from jupyter_client .channelsabc import HBChannelABC
78
Original file line number Diff line number Diff line change 22
33# Copyright (c) IPython Development Team.
44# Distributed under the terms of the Modified BSD License.
5+ from __future__ import annotations
6+
57import copy
68import pickle
79import sys
Original file line number Diff line number Diff line change 11"""Base class for threads."""
2+ from __future__ import annotations
3+
24import typing as t
35from threading import Event , Thread
46
You can’t perform that action at this time.
0 commit comments