We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5e0115 commit aca2d7cCopy full SHA for aca2d7c
1 file changed
reflexle/reflexle/reflexle.py
@@ -7,8 +7,6 @@
7
8
import reflex as rx
9
from reflex.vars.base import Var
10
-from reflex.vars.number import NumberVar
11
-from reflex.vars.sequence import StringVar
12
13
from reflex_global_hotkey import global_hotkey_watcher
14
from .words import possible_solution, valid_guess
@@ -287,7 +285,7 @@ def play_again():
287
285
288
286
289
@rx.memo
290
-def character_box(letter: StringVar, correctness: Var[Correctness], index: NumberVar):
+def character_box(letter: str, correctness: Correctness, index: int):
291
"""Character box."""
292
return rx.flex(
293
rx.box(
0 commit comments