Skip to content

Commit 865c222

Browse files
committed
Fix white space issue
1 parent 0ec3b32 commit 865c222

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

README.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ Usage Example
6767
from adafruit_bno08x import BNO_REPORT_ACCELEROMETER
6868
6969
REPORT_INTERVAL = const(100000) # 100 Hz
70-
7170
i2c = busio.I2C(board.SCL, board.SDA)
7271
bno = BNO08X_I2C(i2c)
7372
bno.enable_feature(BNO_REPORT_ACCELEROMETER, REPORT_INTERVAL)

adafruit_bno08x/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -948,7 +948,7 @@ def _get_feature_enable_report(
948948
# TODO2: I think this should call an fn that imports all the bits for the given feature
949949
# so we're not carrying around stuff for extra features
950950
def enable_feature(
951-
self,
951+
self,
952952
feature_id: int,
953953
report_interval: int = _DEFAULT_REPORT_INTERVAL,
954954
) -> None:

0 commit comments

Comments
 (0)