mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-04-25 09:00:33 +08:00
9 lines
217 B
Python
9 lines
217 B
Python
# 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()
|