Compare commits

..

1 commit

Author SHA1 Message Date
0a9d16fb9a
feat: rewrite audiomenu in Python
All checks were successful
/ check (push) Successful in 8s
/ build-packages (push) Successful in 15s
/ build-vm (push) Successful in 2s
/ report-size (push) Successful in 4s
There is no reason for it to be a Rust program
2025-05-17 17:59:05 +02:00

View file

@ -1,6 +1,9 @@
{ writers, python3Packages }:
writers.writePython3 "audiomenu" {
libraries = [ python3Packages.click ];
# line too long, but I like my code well documented
flakeIgnore = [ "E501" ];
flakeIgnore = [
"E501" # line too long, but I like my code well documented
"W503" # line break before binary operator, ruff does this, I trust it
];
} ./audiomenu.py