Browse Source

the `quiet` parameter is passed from the cli to the function

xmlparsing v1.0.1
Holger Frey 2 years ago
parent
commit
1c259b49df
  1. 4
      src/sensospot_parser/__init__.py

4
src/sensospot_parser/__init__.py

@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
Parsing the numerical output from Sensovations Sensospot image analysis.
"""
__version__ = "1.0.0"
__version__ = "1.0.1"
import pathlib
@ -51,7 +51,7 @@ def main(sources, output, quiet=False): @@ -51,7 +51,7 @@ def main(sources, output, quiet=False):
"""
paths = (pathlib.Path(source) for source in sources)
collection = (parse_folder(source) for source in paths)
collection = (parse_folder(source, quiet) for source in paths)
result = pandas.concat(collection, ignore_index=True).to_csv(
output, sep="\t", index=False
)

Loading…
Cancel
Save