changes from voice chat

This commit is contained in:
DomNomNomVR
2025-03-09 20:09:42 +13:00
parent c5eaba88b7
commit 6d1a6907d2
6 changed files with 19 additions and 106 deletions
+2 -2
View File
@@ -3,7 +3,7 @@ from typing import NamedTuple
from unittest.mock import MagicMock
from gears import Gear
from gears.connections import connect
from gears.effect import effect_of
from gears.effect import effect_of, effect_of_2
def test_get_set():
@@ -35,7 +35,7 @@ def test_effect_of_2():
last_arg: tuple[str, int] | None = None
@effect_of(g1, g2)
@effect_of_2(g1, g2)
def value_changed(v1: str, v2: int):
nonlocal last_arg
last_arg = (v1, v2)