Skip to content

Commit 3cb14fe

Browse files
malsynedsuperm1
authored andcommitted
replace U+3BC GREEK SMALL LETTER MU with U+00B5 MICRO SIGN for consistency
I used GREEK SMALL LETTER MU (μ) in the docstring for _get_design_voltage(), but the rest of the codebase uses MICRO SIGN (µ) everywhere.
1 parent 6031eff commit 3cb14fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/amd_debug/battery.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def _get_design_voltage(self, dev) -> str:
5151
return ""
5252

5353
def _charge_to_energy(self, dev, charge):
54-
"""Convert battery charge in μAh to energy in μWh"""
54+
"""Convert battery charge in µAh to energy in µWh"""
5555
voltage = self._get_design_voltage(dev)
5656
if not charge or not voltage:
5757
return ""

0 commit comments

Comments
 (0)