def smartling_settings_check()

in src/wagtail_localize_smartling/checks.py [0:0]


def smartling_settings_check(app_configs, **kwargs):
    errors = []
    try:
        str(smartling_settings.PROJECT_ID)
    except ImproperlyConfigured as e:
        errors.append(
            Error(
                e.args[0],
                id="wagtail_localize_smartling.E001",
            )
        )
    return errors