diff sat_frontends/quick_frontend/quick_list_manager.py @ 2624:56f94936df1e

code style reformatting using black
author Goffi <goffi@goffi.org>
date Wed, 27 Jun 2018 20:14:46 +0200
parents 26edcf3a30eb
children 559a625a236b
line wrap: on
line diff
--- a/sat_frontends/quick_frontend/quick_list_manager.py	Wed Jun 27 07:51:29 2018 +0200
+++ b/sat_frontends/quick_frontend/quick_list_manager.py	Wed Jun 27 20:14:46 2018 +0200
@@ -25,10 +25,14 @@
         """
 
         @param items (list): the suggested list of non tagged items
-        """ 
+        """
         self.tagged = []
-        self.original = items[:] if items else []  # XXX: copy the list! It will be modified
-        self.untagged = items[:] if items else []  # XXX: copy the list! It will be modified
+        self.original = (
+            items[:] if items else []
+        )  # XXX: copy the list! It will be modified
+        self.untagged = (
+            items[:] if items else []
+        )  # XXX: copy the list! It will be modified
         self.untagged.sort()
 
     @property