lint fixes

ruff added to dev dependencies

ruff badge added to readme
This commit is contained in:
2023-10-29 09:40:10 +00:00
parent 2e1916eeaa
commit ce5936b740
8 changed files with 132 additions and 10 deletions

View File

@@ -37,7 +37,7 @@ def get_vmpath():
try:
vm_parent = Path(get_vmpath()).parent
except FileNotFoundError as e:
raise InstallError(f"Unable to fetch DLL path from the registry") from e
raise InstallError("Unable to fetch DLL path from the registry") from e
DLL_NAME = f'VoicemeeterRemote{"64" if bits == 64 else ""}.dll'