fixed 2 issues with ruff
Some checks failed
CI / test (push) Failing after 11s

This commit is contained in:
2026-05-19 15:45:00 -05:00
parent e47aa0bb77
commit d78a8235b5
2 changed files with 2 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
from importlib.metadata import version, PackageNotFoundError
from importlib.metadata import PackageNotFoundError, version
try:
__version__ = version("foreignthon")

View File

@@ -292,6 +292,7 @@ def check(files: tuple):
def langs():
"""List all installed language packs with their versions and authors."""
import json
from .pack import _discover_packs
packs = _discover_packs()