Skip to content

Commit 79f43e7

Browse files
committed
Did the sourcery stuff about run subprocess, needs more testing.
Please enter the commit message for your changes. Lines starting with '' will be ignored, and an empty message aborts the commit. On branch dev Your branch is up to date with 'origin/dev'. Changes to be committed: modified: src/lufus/gui/gui.py modified: src/lufus/iso9660.py
1 parent 8003b15 commit 79f43e7

2 files changed

Lines changed: 1 addition & 1 deletion

File tree

src/lufus/gui/gui.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ def _capture_sane_termios() -> None:
115115
global _SANE_TERMIOS
116116
try:
117117
import termios
118+
118119
fd = sys.stdin.fileno()
119120
if os.isatty(fd):
120121
_SANE_TERMIOS = termios.tcgetattr(fd)

src/lufus/iso9660.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ def _read_sector(f, lba: int) -> bytes:
6060
return f.read(_SECTOR_SIZE)
6161

6262

63-
6463
def _walk_dir(f, lba: int, length: int) -> list[tuple[str, bool, int, int]]:
6564
"""Walk a directory, returning (name, is_dir, extent_lba, data_length) entries."""
6665
entries = []

0 commit comments

Comments
 (0)