mirror of https://github.com/zulip/zulip.git
8 lines
155 B
Python
8 lines
155 B
Python
|
from typing import Any, TextIO
|
||
|
|
||
|
class YamoleParser:
|
||
|
data: Any # A blob of data parsed from YAML.
|
||
|
|
||
|
def __init__(self, file: TextIO) -> None:
|
||
|
...
|