From 645707652b04538be55089086cb46c3ff000283a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= <pep@bouah.net>
Date: Fri, 13 Mar 2020 02:35:57 +0100
Subject: plugins/reorder: satisfy linter
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
---
 plugins/reorder.py | 14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

(limited to 'plugins')

diff --git a/plugins/reorder.py b/plugins/reorder.py
index 32fa6639..8d9516f8 100644
--- a/plugins/reorder.py
+++ b/plugins/reorder.py
@@ -117,6 +117,8 @@ def parse_runtime_tablist(tablist):
 
 
 class Plugin(BasePlugin):
+    """reorder plugin"""
+
     def init(self):
         self.api.add_command(
             'reorder',
@@ -129,20 +131,24 @@ class Plugin(BasePlugin):
             help='Save the current tab layout')
 
     @command_args_parser.ignored
-    def command_save_order(self):
+    def command_save_order(self) -> None:
+        """
+        /save_order
+        """
         conf = parse_runtime_tablist(self.core.tabs)
         for key, value in conf:
             self.config.set(key, value)
         self.api.information('Tab order saved', 'Info')
 
     @command_args_parser.ignored
-    def command_reorder(self):
+    def command_reorder(self) -> None:
         """
         /reorder
         """
         tabs_spec = parse_config(self.config)
         if not tabs_spec:
-            return self.api.information('Invalid reorder config', 'Error')
+            self.api.information('Invalid reorder config', 'Error')
+            return None
 
         old_tabs = self.core.tabs.get_tabs()
         roster = old_tabs.pop(0)
@@ -173,3 +179,5 @@ class Plugin(BasePlugin):
 
         self.core.tabs.replace_tabs(new_tabs)
         self.core.refresh_window()
+
+        return None
-- 
cgit v1.2.3