Confusing value from timestamp

Hello everybody!

I’m really confused with the following. Why this expression adds one hour to the result?

180 | timestamp_custom ('%H:%M:%S')

Screenshot 2022-09-11 at 13.27.59

What am I missing?


https://www.home-assistant.io/docs/configuration/templating/#time

Try

{{ 180 | timestamp_custom ('%H:%M:%S', false) }}

Thanks a lot for that!