Skip to content

Commit db2f88e

Browse files
committed
gateway: remove an unused import
1 parent 3e943ec commit db2f88e

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/execnet/gateway.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,19 @@
77

88
import inspect
99
import linecache
10-
import os
1110
import textwrap
1211
import types
1312
from typing import TYPE_CHECKING
1413
from typing import Any
1514
from typing import Callable
1615

17-
import execnet
18-
1916
from . import gateway_base
2017
from .gateway_base import IO
2118
from .gateway_base import Channel
2219
from .gateway_base import Message
2320
from .multi import Group
2421
from .xspec import XSpec
2522

26-
importdir = os.path.dirname(os.path.dirname(execnet.__file__))
27-
2823

2924
class Gateway(gateway_base.BaseGateway):
3025
"""Gateway to a local or remote Python Interpreter."""

0 commit comments

Comments
 (0)