Skip to content

Commit

Permalink
fix mypy errors in openpilot
Browse files Browse the repository at this point in the history
  • Loading branch information
pd0wm committed May 28, 2020
1 parent 1117191 commit 86b0476
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions rednose/__init__.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
from typing import Any, Dict

import numpy as np

from rednose.helpers.ekf_sym import EKF_sym


class KalmanFilter:
name = None
name = "<name>"
initial_x = None
initial_P_diag = None
Q = None
obs_noise = None
obs_noise : Dict[int, Any] = {}

def __init__(self, generated_dir):
dim_state = self.initial_x.shape[0]
Expand Down

0 comments on commit 86b0476

Please sign in to comment.