Skip to content

Commit

Permalink
PF to power factor
Browse files Browse the repository at this point in the history
  • Loading branch information
WillCodeForCats committed Nov 29, 2023
1 parent bbcaeca commit 19fa33c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions custom_components/solaredge_modbus_multi/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -775,9 +775,9 @@ def unique_id(self) -> str:
@property
def name(self) -> str:
if self._phase is None:
return "AC PF"
return "AC Power Factor"
else:
return f"AC PF {self._phase.upper()}"
return f"AC Power Factor {self._phase.upper()}"

@property
def entity_registry_enabled_default(self) -> bool:
Expand Down

0 comments on commit 19fa33c

Please sign in to comment.