From e1b9ea26e8dab9a842eb310bed30484ca2148e0c Mon Sep 17 00:00:00 2001 From: Ujjal Das Date: Mon, 29 Jul 2019 10:37:55 +0530 Subject: [PATCH] update doc string in set_nick_command --- .gitignore | 1 + honeybot/main.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 2e29493..3935eb0 100644 --- a/.gitignore +++ b/.gitignore @@ -115,3 +115,4 @@ cmake-build-debug/ honeybot/log/* # visual studio code settings .vscode/ +/.vs diff --git a/honeybot/main.py b/honeybot/main.py index 8f6fcc8..f606035 100644 --- a/honeybot/main.py +++ b/honeybot/main.py @@ -109,7 +109,8 @@ def set_nick_command(self): str: String for the set nick command. Examples: - TODO + bot_core = Bot_core() + bot_core.set_nick_command() """ return 'NICK ' + self.name + '\r\n'