diff --git a/autoreduce_qp/queue_processor/reduction/service.py b/autoreduce_qp/queue_processor/reduction/service.py index 9da661735..cb1663c38 100644 --- a/autoreduce_qp/queue_processor/reduction/service.py +++ b/autoreduce_qp/queue_processor/reduction/service.py @@ -1,9 +1,9 @@ -# ############################################################################### # +# ############################################################################ # # Autoreduction Repository : https://github.com/autoreduction/autoreduce # -# Copyright © 2020 ISIS Rutherford Appleton Laboratory UKRI +# Copyright © 2021 ISIS Rutherford Appleton Laboratory UKRI # SPDX - License - Identifier: GPL-3.0-or-later -# ############################################################################### # +# ############################################################################ # """ Reduction service contains the classes, and functions that performs a reduction. """ @@ -82,7 +82,7 @@ def copy(self, destination: Path): overwriting what is already present. args: - destination: (Path like) the copy destination. + destination: The copy destination. """ logger.info("Copying %s to %s", self.path, destination) copy_tree(self.path, str(destination)) # We have to convert path objects to str