Dark Sky Sensor High/Low Temperature

The high/low temperature for the day comes over to Home Assistant with 2 decimals. I only want to display 1. Do I need to setup a second sensor to do this?
Thanks

you can indeed create a template sensor for this and format it with | round (1)

{{ states.sensor.dark_sky_daytime_high_temperature.state | round(1)}}

Thanks, that’s what I thought. Just wondering if I was missing another way.