diff options
author | Frederick Muriuki Muriithi | 2021-10-14 07:31:41 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-10-19 10:12:51 +0300 |
commit | 546b37e77c11c5268aa9510b9756f2ed4d60241d (patch) | |
tree | ab4a6faa0ee3f1ccd8d6c206d0e06a5f6c7095da | |
parent | a7fbce242f6683d66452ff02e541aa9b28908f39 (diff) | |
download | genenetwork3-546b37e77c11c5268aa9510b9756f2ed4d60241d.tar.gz |
Fix some linting issues
-rw-r--r-- | gn3/heatmaps.py | 6 | ||||
-rw-r--r-- | gn3/settings.py | 1 |
2 files changed, 4 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)) diff --git a/gn3/settings.py b/gn3/settings.py index 56ddaba..d5f1d3c 100644 --- a/gn3/settings.py +++ b/gn3/settings.py @@ -36,6 +36,7 @@ GENOTYPE_FILES = os.environ.get( # CROSS-ORIGIN SETUP def parse_env_cors(default): + """Parse comma-separated configuration into list of strings.""" origins_str = os.environ.get("CORS_ORIGINS", None) if origins_str: return [ |