fix: remove hardcoded argument

This commit is contained in:
aclist 2026-04-25 20:28:43 +09:00
parent 48f69d79e0
commit 9bd286a924

View File

@ -37,7 +37,7 @@ class ServerTreeView(ContextMixin, TreeView):
def __init__(
self, controller: "Controller", enum: ServerTab, menu: ContextMenuGroup
) -> None:
super().__init__(controller, menu=ContextMenuGroup.SERVER_BROWSER)
super().__init__(controller, menu=menu)
self.controller = controller
self.emitter = controller.get_emitter()