Skip to content
Snippets Groups Projects
Commit dd773f13 authored by Alexander Schlemmer's avatar Alexander Schlemmer
Browse files

MAINT: removed unnecessary print statement

parent e5d75eb6
Branches
Tags
1 merge request!217TST: Make NamedTemporaryFiles Windows-compatible
...@@ -514,7 +514,7 @@ class Converter(object, metaclass=ABCMeta): ...@@ -514,7 +514,7 @@ class Converter(object, metaclass=ABCMeta):
matched_m_prop = None matched_m_prop = None
matched_m_prop_value = None matched_m_prop_value = None
for prop_key, prop_value in properties.items(): for prop_key, prop_value in properties.items():
print("{} = {}".format(prop_key, prop_value)) # print("{} = {}".format(prop_key, prop_value))
# TODO: automatic conversion to str ok? # TODO: automatic conversion to str ok?
m_prop = re.match(prop_def_key, str(prop_key)) m_prop = re.match(prop_def_key, str(prop_key))
if m_prop is not None: if m_prop is not None:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment