mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-28 04:21:58 +08:00
9 lines
217 B
Python
Vendored
9 lines
217 B
Python
Vendored
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
"""Cleanup languages for fixture import."""
|
|
|
|
from weblate.lang.models import Language
|
|
|
|
Language.objects.all().delete()
|