Skip to content

Commit

Permalink
fix: mypy error in colormap.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Slowki committed Jun 20, 2019
1 parent 69d5422 commit 8e62aca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion argoverse/visualization/colormap.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import numpy as np


def colormap(rgb=False):
def colormap(rgb: bool = False) -> np.ndarray:
color_list = np.array(
[
0.000, 0.447, 0.741,
Expand Down

0 comments on commit 8e62aca

Please sign in to comment.