mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-02-07 16:13:23 +08:00
another attempt at lint fix
This commit is contained in:
parent
a7fed1d62e
commit
5ba8348665
@ -101,7 +101,11 @@ def printfiles(file: TextIO | None = None) -> None:
|
|||||||
print('Files open by this app (not limited to Python\'s):', file=file)
|
print('Files open by this app (not limited to Python\'s):', file=file)
|
||||||
for i, ofile in enumerate(proc.open_files()):
|
for i, ofile in enumerate(proc.open_files()):
|
||||||
# Mypy doesn't know about mode apparently.
|
# Mypy doesn't know about mode apparently.
|
||||||
mode = ofile.mode # type: ignore
|
# (and can't use type: ignore because we don't require psutil
|
||||||
|
# and then mypy complains about unused ignore comment when its
|
||||||
|
# not present)
|
||||||
|
mode = getattr(ofile, 'mode')
|
||||||
|
assert isinstance(mode, str)
|
||||||
textio = textio_ids.get(ofile.fd)
|
textio = textio_ids.get(ofile.fd)
|
||||||
textio_s = id(textio) if textio is not None else '<not found>'
|
textio_s = id(textio) if textio is not None else '<not found>'
|
||||||
fileio = fileio_ids.get(ofile.fd)
|
fileio = fileio_ids.get(ofile.fd)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user