From 087f00d7c88ecdf71c4b68ce564263c0ee99d09c Mon Sep 17 00:00:00 2001 From: Misko Date: Sun, 6 Oct 2024 18:50:22 -0700 Subject: [PATCH] remove akai client --- hudes/hudes_play.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/hudes/hudes_play.py b/hudes/hudes_play.py index 39a02a8..643665c 100644 --- a/hudes/hudes_play.py +++ b/hudes/hudes_play.py @@ -1,8 +1,6 @@ import argparse -import pygame.midi - -from hudes.akai_client import AkaiClient +# from hudes.akai_client import AkaiClient from hudes.keyboard_client import KeyboardClient from hudes.keyboard_client_openGL import KeyboardClientGL from hudes.view import OpenGLView, View @@ -31,9 +29,9 @@ def main(): mesh_grid_size=args.grid_size, ) view = OpenGLView(grid_size=args.grid_size, grids=args.grids) - elif args.input == "akai": - controller = AkaiClient(seed=args.seed) - view = View() + # elif args.input == "akai": + # controller = AkaiClient(seed=args.seed) + # view = View() elif args.input == "xtouch": controller = XTouchClient(seed=args.seed) view = View(use_midi=True)