WeblateOrg / weblate

Function contains unused argument PYL-W0613
Anti-pattern
Major
2 months ago4 months old
Unused argument 'app_configs'
 9
10
11@register
12def check_machinery(app_configs, **kwargs):13    from weblate.machinery.models import MACHINERY
14
15    # Needed to load the data
Unused argument 'app_configs'
16
17
18@register
19def check_git_backend(app_configs, **kwargs):20    if find_git_http_backend() is None:
21        return [
22            weblate_check(
Unused argument 'app_configs'
13
14
15@register(deploy=True)
16def check_avatars(app_configs, **kwargs):17    if not settings.ENABLE_AVATARS:
18        return []
19    try: