Skip to content

Commit d73b2f0

Browse files
committed
Remove unnecessary noqa
1 parent 59d55fb commit d73b2f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

qtoggleserver/modbus/passive/tcpdump.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ async def run(self) -> None:
7070
text=True,
7171
) as proc:
7272
# Set non-blocking read mode
73-
fd = proc.stdout.fileno() # noqa
73+
fd = proc.stdout.fileno()
7474
flags = fcntl.fcntl(fd, fcntl.F_GETFL)
7575
fcntl.fcntl(fd, fcntl.F_SETFL, flags | os.O_NONBLOCK)
7676
line = ""

0 commit comments

Comments
 (0)