Skip to content

Commit aca2d7c

Browse files
committed
remove weird memo thing
1 parent e5e0115 commit aca2d7c

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

reflexle/reflexle/reflexle.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77

88
import reflex as rx
99
from reflex.vars.base import Var
10-
from reflex.vars.number import NumberVar
11-
from reflex.vars.sequence import StringVar
1210

1311
from reflex_global_hotkey import global_hotkey_watcher
1412
from .words import possible_solution, valid_guess
@@ -287,7 +285,7 @@ def play_again():
287285

288286

289287
@rx.memo
290-
def character_box(letter: StringVar, correctness: Var[Correctness], index: NumberVar):
288+
def character_box(letter: str, correctness: Correctness, index: int):
291289
"""Character box."""
292290
return rx.flex(
293291
rx.box(

0 commit comments

Comments
 (0)