Skip to content

Commit 20c0628

Browse files
Found one more left over debug print
1 parent d36b863 commit 20c0628

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

masci_tools/io/fleurxmlmodifier.py

-1
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,6 @@ def delete_att(self, *args: Any, **kwargs: Any) -> None:
641641
if 'attrib_name' in kwargs:
642642
warnings.warn('The argument attrib_name is deprecated. Use name instead', DeprecationWarning)
643643
kwargs['name'] = kwargs.pop('attrib_name')
644-
print(args, kwargs)
645644
self._validate_arguments('delete_att', args, kwargs)
646645
self._tasks.append(ModifierTask('delete_att', args, kwargs))
647646

masci_tools/io/parsers/fleur_schema/outschema_todict.py

-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ def create_outschema_dict(path: os.PathLike,
9999
}
100100
schema_patches = [fix_qpoints_typo, patch_text_types]
101101

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

masci_tools/vis/bokeh_plots.py

-1
Original file line numberDiff line numberDiff line change
@@ -1281,7 +1281,6 @@ def periodic_table_plot(
12811281
# we copy the Be entry and display it with some text again at another spot
12821282
be = data[3:4].copy()
12831283
be['group'] = '7'
1284-
# print(be)
12851284
data.loc[-1] = be.values[0]
12861285
data.index = data.index + 1
12871286
data = data.sort_index()

0 commit comments

Comments
 (0)