You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
276 B
Python
15 lines
276 B
Python
4 months ago
|
from __future__ import annotations
|
||
|
|
||
|
from dataclasses import KW_ONLY, field
|
||
|
from typing import * # type: ignore
|
||
|
|
||
|
import rio
|
||
|
|
||
|
from .. import components as comps
|
||
|
|
||
|
|
||
|
class Settings(rio.UserSettings):
|
||
|
language: str = "en"
|
||
|
office: str = "us-chi"
|
||
|
selected_item: str = ""
|