refactor: remove semicolon from python scripts

Semicolons are unnecessary when there's only one statement on a single line.
This commit is contained in:
Levi Zim
2024-09-29 21:46:41 +08:00
parent d41502ea19
commit adc353cdcc
8 changed files with 16 additions and 16 deletions

View File

@ -33,7 +33,7 @@ def make():
base.set_env('NODE_ENV', 'production')
base_dir = base.get_script_dir() + "/.."
out_dir = base_dir + "/out/js/";
out_dir = base_dir + "/out/js/"
branding = config.option("branding-name")
if ("" == branding):
branding = "onlyoffice"