Skip to content

Commit

Permalink
FIX: FORGOT to initiate cmap as None
Browse files Browse the repository at this point in the history
We should initiate the cmap as None instead of "Red_bl" (sic), so that
our code logic can handle the color scheme based on the IC values just like
MNE does
  • Loading branch information
scott-huberty committed Sep 17, 2023
1 parent c9499d4 commit 44a3407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pylossless/dash/topo_viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def __init__(
res=64,
width=None,
height=None,
cmap="RdBu_r",
cmap=None,
show_sensors=True,
colorbar=False,
):
Expand Down

0 comments on commit 44a3407

Please sign in to comment.