tabby/preprocess/args.py

15 lines
354 B
Python
Raw Normal View History

2023-03-16 09:26:43 +00:00
from dataclasses import dataclass, field
from typing import Optional
@dataclass
class PreprocessProjectArgs:
# add arguments in the following format
project_dir: Optional[str] = field(
metadata={"help": "Project directory."},
)
output_dir: Optional[str] = field(
metadata={"help": "Output save path directory."},
)