From 0c8642d08f88d2dcf8e82a7b58c9922e01c20102 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Wed, 25 Sep 2024 12:10:38 -0500 Subject: Lint: Fix myriad of linting issues --- uploader/genotypes/views.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'uploader/genotypes') diff --git a/uploader/genotypes/views.py b/uploader/genotypes/views.py index f79caba..3c20b52 100644 --- a/uploader/genotypes/views.py +++ b/uploader/genotypes/views.py @@ -78,7 +78,7 @@ def select_population(species: dict, species_id: int): @require_login @with_population(species_redirect_uri="species.populations.genotypes.index", redirect_uri="species.populations.genotypes.select_population") -def list_genotypes(species: dict, population: dict, **kwargs): +def list_genotypes(species: dict, population: dict, **kwargs):# pylint: disable=[unused-argument] """List genotype details for species and population.""" with database_connection(app.config["SQL_URI"]) as conn: return render_template("genotypes/list-genotypes.html", @@ -97,7 +97,7 @@ def list_genotypes(species: dict, population: dict, **kwargs): @genotypesbp.route("//genotypes/list-markers", methods=["GET"]) @require_login @with_species(redirect_uri="species.populations.genotypes.index") -def list_markers(species: dict, **kwargs): +def list_markers(species: dict, **kwargs):# pylint: disable=[unused-argument] """List a species' genetic markers.""" with database_connection(app.config["SQL_URI"]) as conn: start_from = max(safe_int(request.args.get("start_from") or 0), 0) -- cgit v1.2.3