mirror of
https://github.com/WeblateOrg/weblate.git
synced 2026-07-27 22:46:38 +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()
|