Skip to content

Commit

Permalink
Found one more left over debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
janssenhenning committed Apr 21, 2022
1 parent d36b863 commit 20c0628
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion masci_tools/io/fleurxmlmodifier.py
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,6 @@ def delete_att(self, *args: Any, **kwargs: Any) -> None:
if 'attrib_name' in kwargs:
warnings.warn('The argument attrib_name is deprecated. Use name instead', DeprecationWarning)
kwargs['name'] = kwargs.pop('attrib_name')
print(args, kwargs)
self._validate_arguments('delete_att', args, kwargs)
self._tasks.append(ModifierTask('delete_att', args, kwargs))

Expand Down
1 change: 0 additions & 1 deletion masci_tools/io/parsers/fleur_schema/outschema_todict.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ def create_outschema_dict(path: os.PathLike,
}
schema_patches = [fix_qpoints_typo, patch_text_types]

#print(f'processing: {path}/FleurOutputSchema.xsd')
xmlschema = etree.parse(path)
xmlschema, _ = clear_xml(xmlschema)

Expand Down
1 change: 0 additions & 1 deletion masci_tools/vis/bokeh_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -1281,7 +1281,6 @@ def periodic_table_plot(
# we copy the Be entry and display it with some text again at another spot
be = data[3:4].copy()
be['group'] = '7'
# print(be)
data.loc[-1] = be.values[0]
data.index = data.index + 1
data = data.sort_index()
Expand Down

0 comments on commit 20c0628

Please sign in to comment.