re-run through ruff formatter

This commit is contained in:
2025-01-15 10:54:52 +00:00
parent 5a988e8d37
commit 53ad8fdff5
23 changed files with 460 additions and 460 deletions

View File

@@ -8,13 +8,13 @@ logging.basicConfig(level=logging.DEBUG)
def main():
with xair_api.connect("XR18", ip="mixer.local") as mixer:
with xair_api.connect('XR18', ip='mixer.local') as mixer:
mixer.headamp[8].phantom = True
for i in range(-12, -6):
mixer.headamp[8].gain = i
print(mixer.headamp[8].gain)
input("Press Enter to continue...")
input('Press Enter to continue...')
if __name__ == "__main__":
if __name__ == '__main__':
main()