mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
* Dependency update discord.py==1.0.1 websockets<7 [style] black==19.3b0 [Docs] jinja==2.10.1 urllib3==1.24.2 Changes related to breaking changes from discord.py have also been made to match As of this commit, help formatter is back to discord.py's default
15 lines
347 B
Makefile
15 lines
347 B
Makefile
# Python Code Style
|
|
reformat:
|
|
black -l 99 `git ls-files "*.py"`
|
|
stylecheck:
|
|
black --check -l 99 `git ls-files "*.py"`
|
|
|
|
# Translations
|
|
gettext:
|
|
redgettext --command-docstrings --verbose --recursive redbot --exclude-files "redbot/pytest/**/*"
|
|
upload_translations:
|
|
$(MAKE) gettext
|
|
crowdin upload sources
|
|
download_translations:
|
|
crowdin download
|