diff options
author | BonfaceKilz | 2021-05-05 14:37:35 +0300 |
---|---|---|
committer | BonfaceKilz | 2021-05-08 19:19:47 +0300 |
commit | 83dfbe112f32511b4f656de7f387470cff0680ed (patch) | |
tree | d1561b8391a8842e28e02701d10c06ede4c8cef0 /gn3/api/data_entry.py | |
parent | 5217a366e7904142fc443594facb126d28cd2b25 (diff) | |
download | genenetwork3-83dfbe112f32511b4f656de7f387470cff0680ed.tar.gz |
Fix pep-8 errors
Diffstat (limited to 'gn3/api/data_entry.py')
-rw-r--r-- | gn3/api/data_entry.py | 2 |
1 files changed, 2 insertions, 0 deletions
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") |