Skip to content

Commit

Permalink
Version bump for new release (1.0.4) (#179)
Browse files Browse the repository at this point in the history
* bumped version number in preparation for release

* added small ignore

* style
  • Loading branch information
soldni committed Jul 24, 2024
1 parent ac91597 commit 5868453
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
2 changes: 1 addition & 1 deletion python/dolma/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 5868453

Please sign in to comment.