We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a636f commit dc35a9eCopy full SHA for dc35a9e
.github/workflows/docker-publish.yml
@@ -43,6 +43,7 @@ jobs:
43
uses: docker/build-push-action@v6
44
with:
45
context: .
46
+ platforms: linux/amd64,linux/arm64
47
push: true
48
tags: ${{ steps.meta.outputs.tags }}
49
labels: ${{ steps.meta.outputs.labels }}
StreamingCommunity/Lib/TMBD/tmdb.py
@@ -7,7 +7,6 @@
7
# External libraries
8
from rich.console import Console
9
from dotenv import load_dotenv
10
-load_dotenv()
11
12
13
# Internal utilities
@@ -17,9 +16,11 @@
17
16
18
19
# Variable
+load_dotenv()
20
console = Console()
21
table_show_manager = TVShowManager()
22
api_key = os.environ.get("TMDB_API_KEY")
23
+
24
if not api_key:
25
raise ValueError("TMDB_API_KEY non trovata nel file .env")
26
0 commit comments