You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/libs/cli/tests/unit_tests/migrate/cli_runner/case.py

14 lines
214 B
Python

from __future__ import annotations
from dataclasses import dataclass
from .file import File
from .folder import Folder
@dataclass
class Case:
source: Folder | File
expected: Folder | File
name: str