aboutsummaryrefslogtreecommitdiff
path: root/bh20simplewebuploader/main.py
diff options
context:
space:
mode:
authorAdam Novak2020-04-17 12:20:28 -0700
committerAdam Novak2020-04-17 12:21:00 -0700
commit8a65eaff3147cf9908159c0a2a38f86a4043fe3e (patch)
treed7cac61f7e55856e61f2587243e73fc4659214b5 /bh20simplewebuploader/main.py
parent3a10517123c261d5ce26f174b97764fcaad06e93 (diff)
downloadbh20-seq-resource-8a65eaff3147cf9908159c0a2a38f86a4043fe3e.tar.gz
bh20-seq-resource-8a65eaff3147cf9908159c0a2a38f86a4043fe3e.tar.lz
bh20-seq-resource-8a65eaff3147cf9908159c0a2a38f86a4043fe3e.zip
Remove extraneous prints
Diffstat (limited to 'bh20simplewebuploader/main.py')
-rw-r--r--bh20simplewebuploader/main.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/bh20simplewebuploader/main.py b/bh20simplewebuploader/main.py
index c8fdc3f..0db7d84 100644
--- a/bh20simplewebuploader/main.py
+++ b/bh20simplewebuploader/main.py
@@ -76,9 +76,6 @@ def generate_form(schema, options):
IRI.
"""
- print(schema)
- print(options)
-
# Get the list of form components, one of which is the root
components = schema.get('$graph', [])
@@ -160,10 +157,7 @@ def generate_form(schema, options):
if ref_iri:
record['ref_iri'] = ref_iri
- print(field_name)
-
if field_name in options:
- print("Has options: {}".format(options[field_name]))
# The field will be a 'select' type no matter what its real
# data type is.
record['type'] = 'select' # Not a real HTML input type. It's its own tag.