Skip to content

Commit

Permalink
removing print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
proccaserra committed Feb 12, 2024
1 parent 5d03523 commit 07ae789
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isatools/model/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ def name(self):
def name(self, val):
if val is not None and isinstance(val, str):
self.__name = val
# print("Constructor", self.__name, val, type(val))
else:
raise AttributeError('Process.name must be a string')

Expand Down Expand Up @@ -307,6 +306,7 @@ def from_assay_dict(self, process, technology_type):
self.id = process.get('@id', '')
self.executes_protocol = indexes.get_protocol(process['executesProtocol']['@id'])
self.load_comments(process.get('comments', []))
# TODO: move to constants.py
allowed_protocol_type_terms = [
"nucleic acid sequencing",
"nmr spectroscopy",
Expand Down

0 comments on commit 07ae789

Please # to comment.