From 5868453e7cda753af4bf66058c5518c017df8729 Mon Sep 17 00:00:00 2001 From: Luca Soldaini Date: Wed, 24 Jul 2024 20:01:56 +0100 Subject: [PATCH] Version bump for new release (1.0.4) (#179) * bumped version number in preparation for release * added small ignore * style --- pyproject.toml | 2 +- python/dolma/cli/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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: