Skip to content

Commit

Permalink
remove logging && add NOTE for workspace_datatype
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiangs18 committed Aug 26, 2024
1 parent d1dd768 commit e79c297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/GenomeFileUtil/core/GenomeInterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ def _validate_genome_input_params(self, genome_input):
"""
Check required parameters are in genome_input
"""
logging.info("start validating genome_input params")
# check for required parameters
for p in ["name", "data"]:
if p not in genome_input:
Expand Down Expand Up @@ -213,6 +212,7 @@ def _save_genome_mass(self, params):
data = input_params['data']

# XXX there is no `workspace_datatype` param in the spec
# NOTE: The method caller should not be able to choose an arbitrary workspace type
ws_datatype = input_params.get('workspace_datatype', "KBaseGenomes.Genome")
# XXX there is no `meta` param in the spec
meta = input_params.get('meta', {})
Expand Down

0 comments on commit e79c297

Please sign in to comment.