Occusim Question

So I should be using quotes around all my times? Does this include offsets? Also if I use something like:

step_evening_start: sunset - 00:45:00

Do I need to use quotes around the 00:45:00 or will that mess it up?

That would mess it up.

yaml sees things like sunset - 00:45:00 as string with or without quotes
but 00:45:00 isnt seen as string.

so you can use

‘sunset - 00:45:00’ and ‘00:45:00’ to make sure everything is seen as a string.

if you use sunset - ‘00:45:00’ yaml will see that as “sunset - ‘00:45:00’” and that would create a problem in the code because the single quotes will become part of the string.

1 Like

What he said :slight_smile:

2 Likes