diff --git a/pyproject.toml b/pyproject.toml index c55ab0a8..be1368a9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "dolma" -version = "1.0.3" +version = "1.0.4" description = "Data filters" license = { text = "Apache-2.0" } readme = "README.md" diff --git a/python/dolma/cli/__init__.py b/python/dolma/cli/__init__.py index de6349cd..2ef221d7 100644 --- a/python/dolma/cli/__init__.py +++ b/python/dolma/cli/__init__.py @@ -93,7 +93,7 @@ def make_parser(parser: A, config: Type[DataClass], prefix: Optional[str] = None # here's where we check if T is a dataclass if is_dataclass(typ_): # recursively add subparsers - make_parser(parser, typ_, prefix=field_name) + make_parser(parser, typ_, prefix=field_name) # type: ignore continue if typ_ is bool: