diff options
| author | Frederick Muriuki Muriithi | 2025-12-17 12:44:52 -0600 |
|---|---|---|
| committer | Frederick Muriuki Muriithi | 2025-12-17 12:44:52 -0600 |
| commit | ecdc6dbd73cd7aeb83eeb866378ef42cd8979131 (patch) | |
| tree | 484525345cd4ba11460aaac0ac43e4e99515d127 /uploader/phenotypes/views.py | |
| parent | fd4fde868727a2779a11c38ef7cda300d4288030 (diff) | |
| download | gn-uploader-ecdc6dbd73cd7aeb83eeb866378ef42cd8979131.tar.gz | |
Fix linting problems.
Diffstat (limited to 'uploader/phenotypes/views.py')
| -rw-r--r-- | uploader/phenotypes/views.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/uploader/phenotypes/views.py b/uploader/phenotypes/views.py index 5b32fc0..ead43ab 100644 --- a/uploader/phenotypes/views.py +++ b/uploader/phenotypes/views.py @@ -428,7 +428,7 @@ def add_phenotypes(species: dict, population: dict, dataset: dict, **kwargs):# p return render_template( sui_template("phenotypes/add-phenotypes-with-rqtl2-bundle.html" if use_bundle - else f"phenotypes/add-phenotypes-raw-files.html"), + else "phenotypes/add-phenotypes-raw-files.html"), species=species, population=population, dataset=dataset, @@ -1078,6 +1078,7 @@ def recompute_means(# pylint: disable=[unused-argument] def return_to_dataset_view_handler(job, msg: str): + """Handler for background jobs: Returns to `View Dataset` page.""" flash(msg, "alert alert-success") return redirect(url_for( "species.populations.phenotypes.view_dataset", |
