From 7239f719fdb7b3801b05f64703c90b92ecb4b2e5 Mon Sep 17 00:00:00 2001 From: LUIS NOVO Date: Tue, 10 Jun 2025 11:53:53 -0300 Subject: [PATCH] fix: enforce env variables are present --- open_notebook/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/open_notebook/__init__.py b/open_notebook/__init__.py index e69de29..bf6bd6c 100644 --- a/open_notebook/__init__.py +++ b/open_notebook/__init__.py @@ -0,0 +1,3 @@ +from dotenv import load_dotenv + +load_dotenv()