Skip to content

Commit

Permalink
docs(constructionset): Fix incorrect description
Browse files Browse the repository at this point in the history
Thanks for catching this one @tanushree04 !
  • Loading branch information
chriswmackey committed Jul 16, 2021
1 parent abd9299 commit bd96d7b
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions honeybee_schema/energy/constructionset.py
Expand Up @@ -106,17 +106,17 @@ class ApertureConstructionSetAbridged(NoExtraBaseModel):
default=None,
min_length=1,
max_length=100,
description='Identifier for a WindowConstruction for apertures with an '
'Outdoors boundary condition, False is_operable property, and a Wall '
'face type for their parent face.'
description='Identifier for a WindowConstruction for all apertures with a '
'Surface boundary condition.'
)

window_construction: str = Field(
default=None,
min_length=1,
max_length=100,
description='Identifier for a WindowConstruction for all apertures with a '
'Surface boundary condition.'
description='Identifier for a WindowConstruction for apertures with an '
'Outdoors boundary condition, False is_operable property, and a Wall '
'face type for their parent face.'
)

skylight_construction: str = Field(
Expand All @@ -143,16 +143,14 @@ class ApertureConstructionSet(NoExtraBaseModel):
type: constr(regex='^ApertureConstructionSet$') = 'ApertureConstructionSet'

interior_construction: WindowConstruction = Field(
default=None,
description='A WindowConstruction for apertures with an '
'Outdoors boundary condition, False is_operable property, and a Wall '
'face type for their parent face.'
default=None, description='A WindowConstruction for all apertures with a '
'Surface boundary condition.'
)

window_construction: WindowConstruction = Field(
default=None,
description='A WindowConstruction for all apertures with a '
'Surface boundary condition.'
default=None, description='A WindowConstruction for apertures with an '
'Outdoors boundary condition, False is_operable property, and a Wall '
'face type for their parent face.'
)

skylight_construction: WindowConstruction = Field(
Expand Down

0 comments on commit bd96d7b

Please sign in to comment.