aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/christmas/hanukkah_embed.py (follow)
Commit message (Collapse)AuthorAgeLines
* Move Hanukkah to Holidays folderGravatar Janine vN2021-09-04-113/+0
| | | | | Hannukah was previously in the Christmas folder, which was weird. This now moves it to its own folder under Holidays.
* Fix type annotationsGravatar decorator-factory2021-08-31-3/+2
|
* chore: Apply suggested changes to hanukkah_embed.pyGravatar ToxicKidz2021-05-15-12/+2
|
* chore: Make things that are only used once constantsGravatar ToxicKidz2021-05-15-11/+10
|
* chore: Make all aliases in commands tuplesGravatar ToxicKidz2021-05-15-1/+1
|
* chore: Remove redundant f-stringsGravatar ToxicKidz2021-05-15-2/+2
|
* chore: Reformat the code to follow the style guildGravatar ToxicKidz2021-05-07-12/+22
|
* Apply suggested changes to hanukkah_embed.pyGravatar ToxicKidz2021-05-04-6/+6
|
* chore: Prefer double quotes over single quotesGravatar ToxicKidz2021-05-04-14/+14
|
* Clean Up Christmas SeasonGravatar ToxicKidz2021-04-20-7/+9
|
* Refactor: capitalize Month enum membersGravatar kwzrd2020-03-31-1/+1
| | | | Co-authored-by: MarkKoz <[email protected]>
* Deseasonify: log in `add_cog` rather than in each `setup`Gravatar kwzrd2020-03-28-1/+0
| | | | | | | | | | | | The previous system required each extension's `setup` func to log that the cog was loaded. This leads to inconsistent messages all trying to convey the same thing, variable logger names in the output file are difficult to read, and several extensions were not logging at all. By logging directly in the `add_cog` method, we reduce code repetition, ensure consistent format, and remove the responsibility to remember that a log should be made.
* Deseasonify: rename `seasons` pkg to `exts`Gravatar kwzrd2020-03-28-0/+114
It is believed that this is now a more logical name for the package, as extensions no longer bind to seasons. Internally, packages are still grouped into seasonal sub-packages. There are quite a few, and it makes sense to group them by a common theme that inspired their functionality.