mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2026-05-01 06:46:12 -04:00
b88b5a2601
* ran black: code formatter against `redbot/` with `-l 99` * badge
12 lines
187 B
Python
12 lines
187 B
Python
import subprocess
|
|
|
|
TO_TRANSLATE = ["../dataconverter.py"]
|
|
|
|
|
|
def regen_messages():
|
|
subprocess.run(["pygettext", "-n"] + TO_TRANSLATE)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
regen_messages()
|