From eb831ebdcdb453b5147cf242574d5d27ef040d54 Mon Sep 17 00:00:00 2001 From: Bridget Date: Sun, 12 Apr 2020 22:45:41 +0200 Subject: [PATCH] Add docstring --- lslsh.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lslsh.py b/lslsh.py index 718a64e..ddc702a 100644 --- a/lslsh.py +++ b/lslsh.py @@ -77,6 +77,7 @@ class Shell(cmd.Cmd): return True def add_cmd(self, name, help_text): + """Make a new command available within the shell.""" def do_cmd(arg): result = self.send_cmd(self.url, arg) print(result)