LogarithmPlotter/run.py
Ad5001 74ea50d19f
All checks were successful
continuous-integration/drone/push Build is passing
Changing description, starting translator.
2022-01-20 18:19:36 +01:00

20 lines
393 B
Python

def update_translations():
"""
Updates all binary translations
"""
from os import system, getcwd, chdir, path
pwd = getcwd()
chdir(path.join("LogarithmPlotter", "i18n"))
system("./release.sh")
chdir(pwd)
def run():
update_translations()
from LogarithmPlotter import logarithmplotter
logarithmplotter.run()
if __name__ == "__main__":
run()