From 83dfbe112f32511b4f656de7f387470cff0680ed Mon Sep 17 00:00:00 2001 From: BonfaceKilz Date: Wed, 5 May 2021 14:37:35 +0300 Subject: Fix pep-8 errors --- gn3/api/data_entry.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'gn3/api') diff --git a/gn3/api/data_entry.py b/gn3/api/data_entry.py index e69a6cb..0a093d1 100644 --- a/gn3/api/data_entry.py +++ b/gn3/api/data_entry.py @@ -9,10 +9,12 @@ data_entry = Blueprint("data_entry", __name__) @data_entry.route("/phenotype", methods=["POST"], strict_slashes=False) def load_phenotype(): + """Load the phenotype""" return jsonify("Pass") @data_entry.route("/genotype", methods=["POST"], strict_slashes=False) def load_genotype(): + """Load the genotype""" return jsonify("Pass") -- cgit v1.2.3