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

@@ -70,7 +70,7 @@ class Patch(IRemote):
@property
def identifier(self) -> str:
return f"patch"
return "patch"
@property
def postfadercomp(self) -> bool:
@@ -92,7 +92,7 @@ class Patch(IRemote):
class Asio(IRemote):
@property
def identifier(self) -> str:
return f"patch"
return "patch"
class AsioIn(Asio):