Skip to content

Commit

Permalink
Fix Additional lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
cloneofghosts committed Feb 4, 2024
1 parent dd92ec2 commit 449d308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/pirateweather/weather.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def native_visibility(self):
"""Return the visibility."""
visibility = self._weather_coordinator.data.currently().d.get("visibility")

eturn round(visibility, 2)
return round(visibility, 2)

@property
def condition(self):
Expand Down

0 comments on commit 449d308

Please sign in to comment.