PEP fixes for ci / maintenance scripts

This commit is contained in:
Matthias 2021-11-19 21:50:41 +01:00
parent 4e113798b4
commit 9abbb6cb5e
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076
4 changed files with 11 additions and 8 deletions

View File

@ -28,6 +28,7 @@ print("=================================")
print("Checking static javascript files:") print("Checking static javascript files:")
print("=================================") print("=================================")
def check_invalid_tag(data): def check_invalid_tag(data):
pattern = r"{%(\w+)" pattern = r"{%(\w+)"
@ -45,6 +46,7 @@ def check_invalid_tag(data):
return err_count return err_count
def check_prohibited_tags(data): def check_prohibited_tags(data):
allowed_tags = [ allowed_tags = [
@ -78,7 +80,7 @@ def check_prohibited_tags(data):
has_trans = True has_trans = True
if not has_trans: if not has_trans:
print(f" > file is missing 'trans' tags") print(" > file is missing 'trans' tags")
err_count += 1 err_count += 1
return err_count return err_count

View File

@ -24,7 +24,7 @@ for line in str(out.decode()).split('\n'):
if len(locales) > 0: if len(locales) > 0:
print("There are {n} unstaged locale files:".format(n=len(locales))) print("There are {n} unstaged locale files:".format(n=len(locales)))
for l in locales: for lang in locales:
print(" - {l}".format(l=l)) print(" - {l}".format(l=lang))
sys.exit(len(locales)) sys.exit(len(locales))

View File

@ -9,7 +9,6 @@ import sys
import re import re
import os import os
import argparse import argparse
import requests
if __name__ == '__main__': if __name__ == '__main__':
@ -65,7 +64,7 @@ if __name__ == '__main__':
e.g. "0.5 dev" e.g. "0.5 dev"
""" """
print(f"Checking development branch") print("Checking development branch")
pattern = "^\d+(\.\d+)+ dev$" pattern = "^\d+(\.\d+)+ dev$"
@ -81,7 +80,7 @@ if __name__ == '__main__':
e.g. "0.5.1" e.g. "0.5.1"
""" """
print(f"Checking release branch") print("Checking release branch")
pattern = "^\d+(\.\d+)+$" pattern = "^\d+(\.\d+)+$"

View File

@ -1,6 +1,5 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from shutil import copyfile
import os import os
import json import json
import sys import sys
@ -134,6 +133,7 @@ def rebuild_models(c):
manage(c, "rebuild_models", pty=True) manage(c, "rebuild_models", pty=True)
@task @task
def rebuild_thumbnails(c): def rebuild_thumbnails(c):
""" """
@ -142,6 +142,7 @@ def rebuild_thumbnails(c):
manage(c, "rebuild_thumbnails", pty=True) manage(c, "rebuild_thumbnails", pty=True)
@task @task
def clean_settings(c): def clean_settings(c):
""" """
@ -150,6 +151,7 @@ def clean_settings(c):
manage(c, "clean_settings") manage(c, "clean_settings")
@task(post=[rebuild_models, rebuild_thumbnails]) @task(post=[rebuild_models, rebuild_thumbnails])
def migrate(c): def migrate(c):
""" """
@ -306,7 +308,7 @@ def export_records(c, filename='data.json'):
# Get an absolute path to the file # Get an absolute path to the file
if not os.path.isabs(filename): if not os.path.isabs(filename):
filename = os.path.join(localDir(), filename) filename = os.path.join(localDir(), filename)
filename = os.path.abspath(filename) filename = os.path.abspath(filename)
print(f"Exporting database records to file '{filename}'") print(f"Exporting database records to file '{filename}'")