Skip to content
Snippets Groups Projects

Add more type hints, fix some type errors, and clean up some strings

Merged Newbyte requested to merge newbyte/mount-fix into master
All threads resolved!
Files
5
+ 1
1
@@ -182,7 +182,7 @@ def configure_abuild(chroot: Chroot, verify=False):
for line in handle:
if not line.startswith(prefix):
continue
if line != (prefix + jobs + "\n"):
if line != (prefix + str(jobs) + "\n"):
if verify:
raise RuntimeError(
f"Failed to configure abuild: {path}"
Loading