massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / tkinter / colorchooser.pyi
1 from tkinter.commondialog import Dialog
2 from typing import Any, ClassVar
3
4 class Chooser(Dialog):
5     command: ClassVar[str]
6
7 def askcolor(color: str | bytes | None = ..., **options: Any) -> tuple[None, None] | tuple[tuple[float, float, float], str]: ...