From faa3c07497f8524306c7538a897980bf98178d4a Mon Sep 17 00:00:00 2001 From: Lukas Pielsticker <50139597+lukaspie@users.noreply.github.com> Date: Mon, 26 Aug 2024 09:27:56 +0200 Subject: [PATCH] small updates to keep things clean --- docs/index.md | 2 +- src/pynxtools/dataconverter/convert.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index 13b494e5c..af4e86888 100644 --- a/docs/index.md +++ b/docs/index.md @@ -55,7 +55,7 @@ An introduction to NeXus and its design principles. ### Reference -`pynxtools` has a number of command line tools that can be used to, among others, convert data and verify NeXus file. You can more information about the +`pynxtools` has a number of command line tools that can be used to convert data and verify NeXus files. You can more information about the API [here](reference/cli-api.md). Within FAIRmat, we maintain a number of reader plugins for different experimental techniques. You can find more information [here](reference/plugins.md). diff --git a/src/pynxtools/dataconverter/convert.py b/src/pynxtools/dataconverter/convert.py index 1e3d4be7e..a38392669 100644 --- a/src/pynxtools/dataconverter/convert.py +++ b/src/pynxtools/dataconverter/convert.py @@ -471,6 +471,6 @@ def write_to_file(text): @main_cli.command("get-readers") def get_reader_cli(): - "Prints a list of all installed readers." + """Prints a list of all installed readers.""" readers = get_names_of_all_readers() logger.info(f"The following readers are currently installed: {readers}.")