Skip to content

Commit 436da73

Browse files
committed
fix ruff issues
1 parent aac688b commit 436da73

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

python/rxnet/runtime.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,6 @@ def tick_nodes_at(
436436

437437
entries = [self._entries[i] for i in node_indices]
438438
self.context.activation_us = activation_us
439-
nodes = [e.node for e in entries]
440439
if self._executor is not None:
441440
elapsed = self._parallel_tick(entries)
442441
else:

python/rxnet/thread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414

1515
from .cyclic import sleep_until
1616
from .runtime import (
17-
Context,
1817
SCHED_ERROR,
1918
SCHED_SCHEDULABLE,
2019
SCHED_UNSCHEDULABLE,
20+
Context,
2121
SchedReport,
2222
SchedResourceAccess,
2323
SchedTaskResult,

python/tests/test_multirate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
"""
1212
from __future__ import annotations
1313

14-
import sys
1514
import io
15+
import sys
1616
import threading
1717
import time
1818
from contextlib import contextmanager

0 commit comments

Comments
 (0)