From 82b09e476ef68d54f81f22dca32fbc77d7842beb Mon Sep 17 00:00:00 2001
From: Nick Draper <nick.draper@stfc.ac.uk>
Date: Mon, 9 Jul 2018 16:34:19 +0100
Subject: [PATCH] Fix long line warnings from Flake8

---
 .../plugins/algorithms/RefineSatellitePeaks.py              | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/Framework/PythonInterface/plugins/algorithms/RefineSatellitePeaks.py b/Framework/PythonInterface/plugins/algorithms/RefineSatellitePeaks.py
index 1cf9d872971..5ac6f4baa15 100644
--- a/Framework/PythonInterface/plugins/algorithms/RefineSatellitePeaks.py
+++ b/Framework/PythonInterface/plugins/algorithms/RefineSatellitePeaks.py
@@ -23,7 +23,8 @@ class RefineSatellitePeaks(DataProcessorAlgorithm):
         self.declareProperty(PeaksWorkspaceProperty(name="SatellitePeaks",
                                                     defaultValue="",
                                                     direction=Direction.Input),
-                             doc="Positions of seed satellite peaks. These will be used to define the modulation (q) vectors for each satellite.")
+                             doc="Positions of seed satellite peaks. These will be used to define the modulation (q) \
+                             vectors for each satellite.")
 
         self.declareProperty(WorkspaceProperty(name="MDWorkspace",
                                                defaultValue="",
@@ -43,7 +44,8 @@ class RefineSatellitePeaks(DataProcessorAlgorithm):
                              doc="Threshold for automaticallty deciding on the number of modulation (q) vectors to use. If NumOfQs found is set then this \
                              is property is ignored.")
         self.declareProperty('PeakRadius', 0.1, direction=Direction.Input,
-                             doc="The peak radius used to integrate the satellite peaks. This is Euclidean distance in HKL space. This is passed directly to IntegratePeaksMD")
+                             doc="The peak radius used to integrate the satellite peaks. This is Euclidean distance in HKL space. \
+                             This is passed directly to IntegratePeaksMD")
         self.declareProperty('BackgroundInnerRadius', 0.1, direction=Direction.Input,
                              doc="The inner background radius used to integrate the satellite peaks. This is Euclidean distance in HKL space. This is passed directly to \
                              IntegratePeaksMD")
-- 
GitLab