diff options
author | Frederick Muriuki Muriithi | 2025-06-11 05:37:30 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-06-11 05:37:30 -0500 |
commit | 91df005212363108f4deb31dc0fc81e2424547ce (patch) | |
tree | 51666cad37a262c8d82b5391a1ab668fe7d63d3e /uploader/route_utils.py | |
parent | 34161e8f6147120eae6530d9de501b0866bb84c6 (diff) | |
download | gn-uploader-91df005212363108f4deb31dc0fc81e2424547ce.tar.gz |
Fix issues caught by linter.
Diffstat (limited to 'uploader/route_utils.py')
-rw-r--r-- | uploader/route_utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/uploader/route_utils.py b/uploader/route_utils.py index 18eadda..ce718fb 100644 --- a/uploader/route_utils.py +++ b/uploader/route_utils.py @@ -6,7 +6,8 @@ from gn_libs.mysqldb import database_connection from uploader.population.models import (populations_by_species, population_by_species_and_id) -def generic_select_population(# pylint: disable=[too-many-arguments] +def generic_select_population( + # pylint: disable=[too-many-arguments, too-many-positional-arguments] species: dict, template: str, population_id: str, |