diff options
author | Adam Novak | 2020-04-17 12:20:28 -0700 |
---|---|---|
committer | Adam Novak | 2020-04-17 12:21:00 -0700 |
commit | 8a65eaff3147cf9908159c0a2a38f86a4043fe3e (patch) | |
tree | d7cac61f7e55856e61f2587243e73fc4659214b5 | |
parent | 3a10517123c261d5ce26f174b97764fcaad06e93 (diff) | |
download | bh20-seq-resource-8a65eaff3147cf9908159c0a2a38f86a4043fe3e.tar.gz bh20-seq-resource-8a65eaff3147cf9908159c0a2a38f86a4043fe3e.tar.lz bh20-seq-resource-8a65eaff3147cf9908159c0a2a38f86a4043fe3e.zip |
Remove extraneous prints
-rw-r--r-- | bh20simplewebuploader/main.py | 6 |
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. |