We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b14b22a commit 1c64832Copy full SHA for 1c64832
1 file changed
lib/bq27441/bq27441/device.py
@@ -419,13 +419,13 @@ def flags(self):
419
return self.read_word(BQ27441_COMMAND_FLAGS)
420
421
# Read the CONTROL_STATUS subcommand of control()
422
- def status(self):
+ def _control_status(self):
423
return self.read_control_word(BQ27441_CONTROL_STATUS)
424
425
# Private Functions
426
# Check if the BQ27441 - G1A is sealed or not.
427
def sealed(self):
428
- stat = self.status()
+ stat = self._control_status()
429
return stat & BQ27441_STATUS_SS
430
431
# Seal the BQ27441 - G1A
0 commit comments