Skip to content

Commit

Permalink
quickfix
Browse files Browse the repository at this point in the history
  • Loading branch information
nichind committed Dec 7, 2024
1 parent 17b54ed commit 6e97ce7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pybalt/cobalt.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, language: str = "en") -> None:
Parameters:
- language (str, optional): The language to use for translations. Defaults to the system language or "en".
"""
self.language = getenv("LANG")[:2] or language
self.language = getenv("LANG", "en")[:2] or language

def translate(self, key: str, locale: Literal["en", "ru"] = None) -> str:
"""
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def readme():

setup(
name="pybalt",
version="2024.12.3",
version="2024.12.4",
author="nichind",
author_email="[email protected]",
description="Download mediafiles from YouTube, Twitter (X), Instagram, Reddit & more. CLI & python module for @imputnet's cobalt processing instance api.",
Expand Down

0 comments on commit 6e97ce7

Please sign in to comment.