Skip to content

Commit

Permalink
Fix dataclass validation
Browse files Browse the repository at this point in the history
  • Loading branch information
kalisp committed Nov 18, 2024
1 parent 6a306ff commit 0d0afe2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ def _validate_deadline_bool_value(self):
)
if self.RenderSetupIncludeLights not in {"1", "0", True, False}:
raise ValueError(
("Value of {} must be one of "
"'0', '1', True, False").format("RenderSetupIncludeLights")
"Value of 'RenderSetupIncludeLights' must be one of "
"'0', '1', True, False"
)


Expand Down

0 comments on commit 0d0afe2

Please sign in to comment.