File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change 5555__repo__ = "https://github.com/adafruit/Adafruit_CircuitPython_VL53L0X.git"
5656
5757# Configuration constants:
58- # pylint: disable=bad-whitespace
5958_SYSRANGE_START = const (0x00 )
6059_SYSTEM_THRESH_HIGH = const (0x0C )
6160_SYSTEM_THRESH_LOW = const (0x0E )
116115_ALGO_PHASECAL_CONFIG_TIMEOUT = const (0x30 )
117116_VCSEL_PERIOD_PRE_RANGE = const (0 )
118117_VCSEL_PERIOD_FINAL_RANGE = const (1 )
119- # pylint: enable=bad-whitespace
120118
121119
122120def _decode_timeout (val ):
@@ -409,7 +407,6 @@ def _get_vcsel_pulse_period(self, vcsel_period_type):
409407 def _get_sequence_step_enables (self ):
410408 # based on VL53L0X_GetSequenceStepEnables() from ST API
411409 sequence_config = self ._read_u8 (_SYSTEM_SEQUENCE_CONFIG )
412- # pylint: disable=bad-whitespace
413410 tcc = (sequence_config >> 4 ) & 0x1 > 0
414411 dss = (sequence_config >> 3 ) & 0x1 > 0
415412 msrc = (sequence_config >> 2 ) & 0x1 > 0
You can’t perform that action at this time.
0 commit comments