Skip to content

Commit 44c02ea

Browse files
authored
Remove print statements, fix #174 (#177)
1 parent 56ebfc3 commit 44c02ea

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/hdmf/spec/write.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -244,18 +244,7 @@ def export_spec(ns_builder, new_data_types, output_dir):
244244
ns_path = ns_builder.name + '.namespace.yaml'
245245
ext_path = ns_builder.name + '.extensions.yaml'
246246

247-
if len(new_data_types) > 1:
248-
pluralize = 's'
249-
else:
250-
pluralize = ''
251-
252-
print('Creating file {output_dir}/{ext_path} with {new_data_types_count} data type{pluralize}'.format(
253-
pluralize=pluralize, output_dir=output_dir, ext_path=ext_path,
254-
new_data_types_count=len(new_data_types)))
255-
256247
for data_type in new_data_types:
257248
ns_builder.add_spec(ext_path, data_type)
258249

259-
print('Creating file {output_dir}/{ns_path}'.format(output_dir=output_dir, ns_path=ns_path))
260-
261250
ns_builder.export(ns_path, outdir=output_dir)

0 commit comments

Comments
 (0)