Skip to content

Commit dc35a9e

Browse files
committed
Fix issue #426
1 parent 62a636f commit dc35a9e

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ jobs:
4343
uses: docker/build-push-action@v6
4444
with:
4545
context: .
46+
platforms: linux/amd64,linux/arm64
4647
push: true
4748
tags: ${{ steps.meta.outputs.tags }}
4849
labels: ${{ steps.meta.outputs.labels }}

StreamingCommunity/Lib/TMBD/tmdb.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
# External libraries
88
from rich.console import Console
99
from dotenv import load_dotenv
10-
load_dotenv()
1110

1211

1312
# Internal utilities
@@ -17,9 +16,11 @@
1716

1817

1918
# Variable
19+
load_dotenv()
2020
console = Console()
2121
table_show_manager = TVShowManager()
2222
api_key = os.environ.get("TMDB_API_KEY")
23+
2324
if not api_key:
2425
raise ValueError("TMDB_API_KEY non trovata nel file .env")
2526

0 commit comments

Comments
 (0)