Skip to content

Commit

Permalink
Make LSP stop whining
Browse files Browse the repository at this point in the history
  • Loading branch information
TheReverend403 committed Mar 3, 2024
1 parent 55e4ef3 commit 56c4e5b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gentoogram/meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
import os

VERSION: str = "[version unknown]"
_META_VERSION: str = os.getenv("META_VERSION")
_META_HASH: str = os.getenv("META_VERSION_HASH")
_META_VERSION: str | None = os.getenv("META_VERSION")
_META_HASH: str | None = os.getenv("META_VERSION_HASH")

if _META_VERSION and _META_HASH:
VERSION = f"{_META_VERSION}-{_META_HASH[:8]}"
Expand Down

0 comments on commit 56c4e5b

Please sign in to comment.