Skip to content

Commit b7caec8

Browse files
[STYLE] More style tweaks (- WIP PR #454 -)
Changes in file multicast/__init__.py: * minor style change to suppress PYL-R0401
1 parent a9af3ad commit b7caec8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

multicast/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1009,7 +1009,7 @@ def doStep(self, *args, **kwargs) -> tuple: # pragma: no cover
10091009

10101010
if "multicast.skt" not in sys.modules:
10111011
# pylint: disable=cyclic-import - skipcq: PYL-R0401, PYL-C0414
1012-
from . import skt as skt # pylint: disable=cyclic-import - skipcq: PYL-R0401, PYL-C0414
1012+
from . import skt # pylint: disable=cyclic-import - skipcq: PYL-R0401, PYL-C0414
10131013
else: # pragma: no branch
10141014
global skt # skipcq: PYL-W0604
10151015
skt = sys.modules["multicast.skt"]

0 commit comments

Comments
 (0)