diff options
author | Frederick Muriuki Muriithi | 2024-09-24 10:14:17 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-24 10:14:17 -0500 |
commit | eb07b9fa8a7249b1d17632a4a73e133e6ac7ea75 (patch) | |
tree | d888101fa17887cda9498da4f3ddb228a982fffe /uploader/genotypes | |
parent | f5d34ea1e30daaabb5ab49735bec4353777c94d9 (diff) | |
download | gn-uploader-eb07b9fa8a7249b1d17632a4a73e133e6ac7ea75.tar.gz |
Lint: Get rid of extraneous if check.
Diffstat (limited to 'uploader/genotypes')
-rw-r--r-- | uploader/genotypes/views.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/uploader/genotypes/views.py b/uploader/genotypes/views.py index d69dc28..9da4dec 100644 --- a/uploader/genotypes/views.py +++ b/uploader/genotypes/views.py @@ -115,9 +115,7 @@ def list_markers(species_id: int): flash("Invalid species provided!", "alert-danger") return redirect(url_for("species.populations.genotypes.index")) - start_from = safe_int(request.args.get("start_from") or 0) - if start_from < 0: - start_from = 0 + start_from = max(safe_int(request.args.get("start_from") or 0), 0) count = safe_int(request.args.get("count") or 20) markers = enumerate_sequence( genotype_markers(conn, species_id, offset=start_from, limit=count), |