🐛 I now know what docstrings are

This commit is contained in:
Nikolaj Danger
2020-08-03 17:51:35 +02:00
parent 41b048217b
commit 4feae71a5d
6 changed files with 6 additions and 6 deletions

View File

@ -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"]

View File

@ -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"]

View File

@ -1,4 +1,4 @@
__doc__ = "Gwendolyn functions for looking things up"
"""Gwendolyn functions for looking things up"""
__all__ = ["spellFunc", "monsterFunc"]

View File

@ -1,4 +1,4 @@
__doc__ = "Misc. functions for Gwendolyn"
"""Misc. functions for Gwendolyn"""
__all__ = ["nameGen", "tavernGen", "movieFunc"]

View File

@ -1,4 +1,4 @@
__doc__ = "I stole this"
"""I stole this"""
__all__ = ["roll_dice"]

View File

@ -1,4 +1,4 @@
__doc__ = "Functions related to the Star Wars TTRPG"
"""Functions related to the Star Wars TTRPG"""
__all__ = ["parseChar", "parseRoll", "critRoll", "parseDestiny"]