Skip to content

Commit

Permalink
"Reformatted per new black version"
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed Mar 29, 2022
1 parent d197cf7 commit 48fa583
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adafruit_mpu6050.py
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ def temperature(self) -> float:

@property
def acceleration(self) -> Tuple[float, float, float]:
"""Acceleration X, Y, and Z axis data in :math:`m/s^2` """
"""Acceleration X, Y, and Z axis data in :math:`m/s^2`"""
raw_data = self._raw_accel_data
raw_x = raw_data[0][0]
raw_y = raw_data[1][0]
Expand All @@ -265,7 +265,7 @@ def acceleration(self) -> Tuple[float, float, float]:

@property
def gyro(self) -> Tuple[float, float, float]:
"""Gyroscope X, Y, and Z axis data in :math:`º/s` """
"""Gyroscope X, Y, and Z axis data in :math:`º/s`"""
raw_data = self._raw_gyro_data
raw_x = raw_data[0][0]
raw_y = raw_data[1][0]
Expand Down

0 comments on commit 48fa583

Please sign in to comment.