mirror of
https://github.com/ralsina/tartrazine.git
synced 2024-11-12 22:42:23 +00:00
7 lines
90 B
Python
7 lines
90 B
Python
|
from typing import NamedTuple
|
||
|
|
||
|
|
||
|
class Guess(NamedTuple):
|
||
|
language: str
|
||
|
safe: bool
|