Skip to content

Commit 1e67dd7

Browse files
Update domain_colouring_universal.py
Patch fix for unused variable assignment {power}.
1 parent 55dcbfb commit 1e67dd7

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

graphing/domain_colouring_universal.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,8 @@ def user_mapping(colmap_co, colmap_wm, colmap_ph):
186186
dim_Im,
187187
title,
188188
sat,
189-
A
189+
A,
190+
power
190191
)
191192
mpl.subplot(2, 3, 3)
192193
domain_plot(
@@ -216,7 +217,8 @@ def user_mapping(colmap_co, colmap_wm, colmap_ph):
216217
[z_dim [2], z_dim [3]],
217218
"$f(z)=z$",
218219
sat,
219-
A
220+
A,
221+
power
220222
)
221223
mpl.subplot(2, 3, 6)
222224
domain_plot(

0 commit comments

Comments
 (0)