From b0e251f6a994e886ead408eb5bc822bb250d133f Mon Sep 17 00:00:00 2001 From: Chris Mackey Date: Mon, 12 Aug 2024 09:54:39 -0700 Subject: [PATCH] fix(simulation): Allow north input to be less than or equal to 360 --- honeybee_schema/energy/simulation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/honeybee_schema/energy/simulation.py b/honeybee_schema/energy/simulation.py index abfa4c2..f1a1db9 100644 --- a/honeybee_schema/energy/simulation.py +++ b/honeybee_schema/energy/simulation.py @@ -425,7 +425,7 @@ def check_timestep(cls, v): north_angle: float = Field( default=0, ge=-360, - lt=360, + le=360, description='A number between -360 and 360 for the north direction in degrees.' 'This is the counterclockwise difference between the North and the ' 'positive Y-axis. 90 is West and 270 is East. Note that this '