mirror of
https://github.com/hwchase17/langchain.git
synced 2026-03-18 02:53:16 +00:00
16 lines
343 B
Python
16 lines
343 B
Python
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
from typing import TYPE_CHECKING
|
|
|
|
if TYPE_CHECKING:
|
|
from tests.unit_tests.migrate.cli_runner.file import File
|
|
from tests.unit_tests.migrate.cli_runner.folder import Folder
|
|
|
|
|
|
@dataclass
|
|
class Case:
|
|
source: Folder | File
|
|
expected: Folder | File
|
|
name: str
|