-
Notifications
You must be signed in to change notification settings - Fork 9
Open
Labels
good first issueGood for newcomersGood for newcomers
Description
Running this code, you can jump between working_mnemonics fields (Alt+w, Alt +r), but you cannot jump into the datetime or the button.
#!/usr/bin/env python3
from dataclasses import dataclass
from datetime import datetime
from typing import Callable, Literal
from mininterface import run
def x():
pass
@dataclass
class Env:
foo1: datetime
foo2: Callable = x
working_mnemonics1: str = "bar"
working_mnemonics2: str = "bar"
m = run(Env)
You have to tackle this function that sets the mnemonics:
| nested_frame = DateEntryFrame(master, adaptor, tag, variable) |
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers