Skip to content

Commit

Permalink
Add indentation in parameters of EKF.__init__() to comply with PEP-8.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mayitzin committed Oct 6, 2023
1 parent 793c712 commit cba1571
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ahrs/filters/ekf.py
Original file line number Diff line number Diff line change
Expand Up @@ -995,12 +995,12 @@ class EKF:
"""
def __init__(self,
gyr: np.ndarray = None,
acc: np.ndarray = None,
mag: np.ndarray = None,
frequency: float = 100.0,
frame: str = 'NED',
**kwargs):
gyr: np.ndarray = None,
acc: np.ndarray = None,
mag: np.ndarray = None,
frequency: float = 100.0,
frame: str = 'NED',
**kwargs):
self.gyr: np.ndarray = gyr
self.acc: np.ndarray = acc
self.mag: np.ndarray = mag
Expand Down

0 comments on commit cba1571

Please sign in to comment.