# ============================================================================ # FILE: session.py # AUTHOR: Shougo Matsushita # License: MIT license # ============================================================================ import typing class Session(typing.NamedTuple): name: str = '' path: str = '' opened_candidates: typing.List[str] = []