mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/language-data.git
synced 2026-04-21 09:42:22 +08:00
11 lines
247 B
Python
Executable file
11 lines
247 B
Python
Executable file
#! /usr/bin/env python3
|
|
|
|
# Copyright © Michal Čihař <michal@weblate.org>
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
from importlib.resources import as_file, files
|
|
|
|
ref = files("translate") / "lang" / "data.py"
|
|
with as_file(ref) as path:
|
|
print(path)
|