Skip to content

Commit

Permalink
corrected default neem filters.
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdelrhmanBassiouny committed Jul 2, 2024
1 parent e8130d8 commit 7a2e500
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
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "neem_to_sql"
version = "1.0.7"
version = "1.0.8"
description = "Convert NEEMs database from Mongo to SQL"
readme = "README.md"
authors = [{ name = "Abdelrhman Bassiouny", email = "[email protected]" }]
Expand Down
2 changes: 1 addition & 1 deletion src/neems_to_sql/neems_to_sql.py
Original file line number Diff line number Diff line change
Expand Up @@ -2132,7 +2132,7 @@ def get_neem_filters_from_yaml(neem_filters_yaml: Optional[str] = None) -> dict:
LOGGER.error(exc)
raise
else:
filters = {'visibility': 'True'}
filters = {'visibility': True}
return filters


Expand Down

0 comments on commit 7a2e500

Please sign in to comment.