aboutsummaryrefslogtreecommitdiff
path: root/gn3/heatmaps.py
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2021-10-14 07:31:41 +0300
committerBonfaceKilz2021-10-19 10:12:51 +0300
commit546b37e77c11c5268aa9510b9756f2ed4d60241d (patch)
treeab4a6faa0ee3f1ccd8d6c206d0e06a5f6c7095da /gn3/heatmaps.py
parenta7fbce242f6683d66452ff02e541aa9b28908f39 (diff)
downloadgenenetwork3-546b37e77c11c5268aa9510b9756f2ed4d60241d.tar.gz
Fix some linting issues
Diffstat (limited to 'gn3/heatmaps.py')
-rw-r--r--gn3/heatmaps.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gn3/heatmaps.py b/gn3/heatmaps.py
index ff65652..2dd9d07 100644
--- a/gn3/heatmaps.py
+++ b/gn3/heatmaps.py
@@ -374,8 +374,8 @@ def clustered_heatmap(
fig = make_subplots(
rows=num_plots if vertical else 1,
cols=1 if vertical else num_plots,
- shared_xaxes = "columns" if vertical else False,
- shared_yaxes = False if vertical else "rows",
+ shared_xaxes="columns" if vertical else False,
+ shared_yaxes=False if vertical else "rows",
vertical_spacing=0.010,
horizontal_spacing=0.001,
subplot_titles=["" if vertical else x_axis["label"]] + [
@@ -407,7 +407,7 @@ def clustered_heatmap(
"mirror": False,
"showticklabels": i == 0,
"ticks": "outside" if i == 0 else ""
- }
+ }
for i in range(num_plots)}
print("vertical?: {} ==> {}".format("T" if vertical else "F", axes_layouts))