Skip to content

Commit

Permalink
remove prints
Browse files Browse the repository at this point in the history
  • Loading branch information
sanbrock committed Nov 15, 2024
1 parent f15d5f5 commit 8dca6b2
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/pynxtools/nomad/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,6 @@ def parse(

# Normalise experiment type
app_defs = str(self.nx_root).split("(")[1].split(")")[0].split(",")
print(app_defs)
app_def_list = []
for app_elem in app_defs:
app = app_elem.lstrip()
Expand All @@ -504,7 +503,6 @@ def parse(
app_def = ", ".join(app_def_list) + (
" Experiment" if len(app_def_list) == 1 else "Experiments"
)
print(app_def)
if archive.metadata.entry_type is None:
archive.metadata.entry_type = app_def
archive.metadata.domain = "nexus"
Expand Down

0 comments on commit 8dca6b2

Please sign in to comment.