Skip to content

Commit 3206a98

Browse files
committed
Fixing stupid bug
1 parent 656a015 commit 3206a98

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

chainconsumer/plotter.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ def plot(
173173
for chain in chains:
174174
if p1 not in chain.parameters:
175175
continue
176-
if not chain.config["plot_contour"] or chain.config["show_as_1d_prior"]:
176+
if not chain.config["plot_contour"]:
177177
continue
178178

179179
param_summary = summary and p1 not in blind
@@ -197,7 +197,7 @@ def plot(
197197
for chain in chains:
198198
if p1 not in chain.parameters or p2 not in chain.parameters:
199199
continue
200-
if not chain.config["plot_contour"]:
200+
if not chain.config["plot_contour"] or chain.config["show_as_1d_prior"]:
201201
continue
202202
h = None
203203
if p1 in chain.parameters and p2 in chain.parameters:

0 commit comments

Comments
 (0)