Skip to content

Commit

Permalink
fix: str to bool
Browse files Browse the repository at this point in the history
  • Loading branch information
TfedUD authored and mostaphaRoudsari committed Dec 30, 2021
1 parent 6493cea commit 050c24f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ tox.ini
/.vscode
.eggs
*.code-workspace
.env

/tests/assets/temp
2 changes: 1 addition & 1 deletion honeybee_ies/cli/translate.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def translate():
@click.option(
'--folder', '-f', help='Path to target folder.',
type=click.Path(exists=False, file_okay=False, resolve_path=True,
dir_okay='True'), default='.', show_default=True
dir_okay=True), default='.', show_default=True
)
def model_to_gem(model_json, name, folder):
"""Translate a Model JSON file to an IES GEM file.
Expand Down

0 comments on commit 050c24f

Please sign in to comment.