Correct rhino read
This commit is contained in:
parent
f53beb4a0a
commit
c28e1ba176
|
@ -172,7 +172,7 @@ class ThermalBoundary:
|
|||
def thermal_openings(self) -> Union[None, List[ThermalOpening]]:
|
||||
"""
|
||||
Get thermal boundary thermal openings
|
||||
:return: [ThermalOpening]
|
||||
:return: None or [ThermalOpening]
|
||||
"""
|
||||
if self._thermal_openings is None:
|
||||
if self.window_ratio is not None:
|
||||
|
|
|
@ -70,7 +70,7 @@ class ThermalZone:
|
|||
return self._footprint_area
|
||||
|
||||
@property
|
||||
def thermal_boundaries(self) -> List[ThermalBoundary]:
|
||||
def thermal_boundaries(self) -> [ThermalBoundary]:
|
||||
"""
|
||||
Get thermal boundaries bounding with the thermal zone
|
||||
:return: [ThermalBoundary]
|
||||
|
@ -564,7 +564,7 @@ class ThermalZone:
|
|||
_internal_gain.convective_fraction = internal_gain_type.convective_fraction
|
||||
_internal_gain.schedules = internal_gain_type.schedules
|
||||
|
||||
def get_internal_gains(self) -> [InternalGain]:
|
||||
def get_internal_gains(self) -> List[InternalGain]:
|
||||
"""
|
||||
Calculates and returns the list of all internal gains defined
|
||||
:return: [InternalGain]
|
||||
|
|
Loading…
Reference in New Issue
Block a user