Skip to content

Commit

Permalink
Merge pull request #227 from NREL/gtf-fix-issue-212
Browse files Browse the repository at this point in the history
Fix issue #212
  • Loading branch information
gtfierro authored Mar 1, 2023
2 parents fe6972b + 5122c39 commit 12ebb4e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ repos:
- id: mypy
args: ["--install-types", "--non-interactive", "--ignore-missing-imports"]
additional_dependencies: [sqlalchemy2-stubs <= 0.0.2a20, SQLAlchemy <= 1.4]
exclude: docs/conf.py
exclude: docs/conf.py
2 changes: 1 addition & 1 deletion docs/reference/apidoc/code_visualization.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 5 additions & 5 deletions docs/tutorials/template_writing.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
" @prefix brick: <https://brickschema.org/schema/Brick#> .\n",
" p:name a brick:Variable_Air_Volume_Box_With_Reheat ;\n",
" brick:hasPart p:damper, p:htg-coil ;\n",
" brick:hasPoint p:sa-flow, p:sa-temp, p:za-temp ;\n",
" brick:hasPoint p:sa-flow, p:sa-temp, p:za-temp, p:occ, p:co2 ;\n",
" brick:feeds p:zone .\n",
" optional: ['occ', 'co2']\n",
" dependencies:\n",
Expand Down Expand Up @@ -95,7 +95,7 @@
" @prefix brick: <https://brickschema.org/schema/Brick#> .\n",
" p:name a brick:Variable_Air_Volume_Box_With_Reheat ;\n",
" brick:hasPart p:damper, p:htg-coil ;\n",
" brick:hasPoint p:sa-flow, p:sa-temp, p:za-temp ;\n",
" brick:hasPoint p:sa-flow, p:sa-temp, p:za-temp, p:occ, p:co2 ;\n",
" brick:feeds p:zone .\n",
"```\n",
"\n",
Expand All @@ -121,7 +121,7 @@
" @prefix brick: <https://brickschema.org/schema/Brick#> .\n",
" p:name a brick:Variable_Air_Volume_Box_With_Reheat ;\n",
" brick:hasPart p:damper, p:htg-coil ;\n",
" brick:hasPoint p:sa-flow, p:sa-temp, p:za-temp ;\n",
" brick:hasPoint p:sa-flow, p:sa-temp, p:za-temp, p:occ, p:co2 ;\n",
" brick:feeds p:zone .\n",
" optional: ['occ', 'co2']\n",
"```\n",
Expand Down Expand Up @@ -150,7 +150,7 @@
" @prefix brick: <https://brickschema.org/schema/Brick#> .\n",
" p:name a brick:Variable_Air_Volume_Box_With_Reheat ;\n",
" brick:hasPart p:damper, p:htg-coil ;\n",
" brick:hasPoint p:sa-flow, p:sa-temp, p:za-temp ;\n",
" brick:hasPoint p:sa-flow, p:sa-temp, p:za-temp, p:occ, p:co2 ;\n",
" brick:feeds p:zone .\n",
" optional: ['occ', 'co2']\n",
" dependencies:\n",
Expand Down Expand Up @@ -215,7 +215,7 @@
" @prefix brick: <https://brickschema.org/schema/Brick#> .\n",
" p:name a brick:Variable_Air_Volume_Box_With_Reheat ;\n",
" brick:hasPart p:damper, p:htg-coil ;\n",
" brick:hasPoint p:sa-flow, p:sa-temp, p:za-temp ;\n",
" brick:hasPoint p:sa-flow, p:sa-temp, p:za-temp, p:occ, p:co2 ;\n",
" brick:feeds p:zone .\n",
" optional: ['occ', 'co2']\n",
" dependencies:\n",
Expand Down

0 comments on commit 12ebb4e

Please sign in to comment.