From 33e3716ed7b915781bc0dd865fdab0021ef17545 Mon Sep 17 00:00:00 2001 From: Brendan Howell Date: Wed, 25 Nov 2020 22:32:16 +0100 Subject: [PATCH] fix missing docstrings --- screenless/bureau/ihr/ihr.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/screenless/bureau/ihr/ihr.py b/screenless/bureau/ihr/ihr.py index 7da567b..248a3b4 100644 --- a/screenless/bureau/ihr/ihr.py +++ b/screenless/bureau/ihr/ihr.py @@ -133,6 +133,10 @@ class InhumanResources(Bureau): @add_command("getmyip", "Print Office IP Address") def print_my_ip(self): + """ + Print out the current network address of the office. Useful for + necessary screen-based maintainance tasks. + """ sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sock.connect(("8.8.8.8", 80)) self.print_small("This Screenless Office currently resides at:\r\n" +