mirror of
https://github.com/1j01/textual-paint.git
synced 2025-01-08 07:57:25 +03:00
17 lines
321 B
Python
17 lines
321 B
Python
|
"""
|
||
|
This type stub file was generated by pyright.
|
||
|
"""
|
||
|
|
||
|
from dataclasses import dataclass
|
||
|
from .instruction import Instruction
|
||
|
from .token import Token
|
||
|
|
||
|
"""An instruction that we don't support."""
|
||
|
@dataclass
|
||
|
class Unsupported(Instruction[Token]):
|
||
|
"""An instruction that we don't support."""
|
||
|
token: Token
|
||
|
...
|
||
|
|
||
|
|