From 20c06287942c570814b73d6ca0fad5d68cb80c05 Mon Sep 17 00:00:00 2001 From: janssenhenning Date: Thu, 21 Apr 2022 19:29:30 +0200 Subject: [PATCH] Found one more left over debug print --- masci_tools/io/fleurxmlmodifier.py | 1 - masci_tools/io/parsers/fleur_schema/outschema_todict.py | 1 - masci_tools/vis/bokeh_plots.py | 1 - 3 files changed, 3 deletions(-) diff --git a/masci_tools/io/fleurxmlmodifier.py b/masci_tools/io/fleurxmlmodifier.py index a114ed11a..d9152fe4b 100644 --- a/masci_tools/io/fleurxmlmodifier.py +++ b/masci_tools/io/fleurxmlmodifier.py @@ -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)) diff --git a/masci_tools/io/parsers/fleur_schema/outschema_todict.py b/masci_tools/io/parsers/fleur_schema/outschema_todict.py index 0175db893..e7c186229 100644 --- a/masci_tools/io/parsers/fleur_schema/outschema_todict.py +++ b/masci_tools/io/parsers/fleur_schema/outschema_todict.py @@ -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) diff --git a/masci_tools/vis/bokeh_plots.py b/masci_tools/vis/bokeh_plots.py index e362cea4f..87af4d3db 100644 --- a/masci_tools/vis/bokeh_plots.py +++ b/masci_tools/vis/bokeh_plots.py @@ -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()