From 4feae71a5d25607aedb31d2d8d7068cfedb57a32 Mon Sep 17 00:00:00 2001 From: Nikolaj Danger Date: Mon, 3 Aug 2020 17:51:35 +0200 Subject: [PATCH] :bug: I now know what docstrings are --- funcs/__init__.py | 2 +- funcs/games/__init__.py | 2 +- funcs/lookup/__init__.py | 2 +- funcs/other/__init__.py | 2 +- funcs/roll/__init__.py | 2 +- funcs/swfuncs/__init__.py | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/funcs/__init__.py b/funcs/__init__.py index a4ce122..973ce81 100644 --- a/funcs/__init__.py +++ b/funcs/__init__.py @@ -1,4 +1,4 @@ -__doc__ = "A collection of all Gwendolyn functions" +"""A collection of all Gwendolyn functions""" __all__ = ["helloFunc", "cap", "imageFunc", "logThis", "findWikiPage", "makeFiles", "emojiToNumber", "fiarReactionTest", "deleteGame", "stopServer", "checkBalance", "giveMoney", "addMoney", "triviaCountPoints", "triviaStart", "triviaAnswer", "blackjackShuffle", "blackjackStart", "blackjackPlayerDrawHand", "blackjackContinue", "blackjackFinish", "blackjackHit", "blackjackStand", "blackjackDouble", "blackjackSplit", "parseFourInARow", "fourInARowAI", "spellFunc", "monsterFunc", "nameGen", "tavernGen", "movieFunc", "roll_dice", "parseChar", "parseRoll", "critRoll", "parseDestiny"] diff --git a/funcs/games/__init__.py b/funcs/games/__init__.py index 0f55700..0056a07 100644 --- a/funcs/games/__init__.py +++ b/funcs/games/__init__.py @@ -1,4 +1,4 @@ -__doc__ = "Functions for games Gwendolyn can play" +"""Functions for games Gwendolyn can play""" __all__ = ["checkBalance", "giveMoney", "addMoney","triviaCountPoints", "triviaStart", "triviaAnswer", "blackjackShuffle", "blackjackStart", "blackjackPlayerDrawHand", "blackjackContinue", "blackjackFinish", "blackjackHit", "blackjackStand", "blackjackDouble", "blackjackSplit", "parseFourInARow", "fourInARowAI"] diff --git a/funcs/lookup/__init__.py b/funcs/lookup/__init__.py index c114fe9..cac2b29 100644 --- a/funcs/lookup/__init__.py +++ b/funcs/lookup/__init__.py @@ -1,4 +1,4 @@ -__doc__ = "Gwendolyn functions for looking things up" +"""Gwendolyn functions for looking things up""" __all__ = ["spellFunc", "monsterFunc"] diff --git a/funcs/other/__init__.py b/funcs/other/__init__.py index 00874ea..c024164 100644 --- a/funcs/other/__init__.py +++ b/funcs/other/__init__.py @@ -1,4 +1,4 @@ -__doc__ = "Misc. functions for Gwendolyn" +"""Misc. functions for Gwendolyn""" __all__ = ["nameGen", "tavernGen", "movieFunc"] diff --git a/funcs/roll/__init__.py b/funcs/roll/__init__.py index 3215601..173ab00 100644 --- a/funcs/roll/__init__.py +++ b/funcs/roll/__init__.py @@ -1,4 +1,4 @@ -__doc__ = "I stole this" +"""I stole this""" __all__ = ["roll_dice"] diff --git a/funcs/swfuncs/__init__.py b/funcs/swfuncs/__init__.py index 3a6b439..a2e1007 100644 --- a/funcs/swfuncs/__init__.py +++ b/funcs/swfuncs/__init__.py @@ -1,4 +1,4 @@ -__doc__ = "Functions related to the Star Wars TTRPG" +"""Functions related to the Star Wars TTRPG""" __all__ = ["parseChar", "parseRoll", "critRoll", "parseDestiny"]