From 8f3c44235d0c6d8e96829f7b171f5195ee311872 Mon Sep 17 00:00:00 2001 From: VishnuSanal Date: Fri, 19 Jul 2024 14:52:03 +0530 Subject: [PATCH] chore: fix ci --- robyn/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/robyn/__init__.py b/robyn/__init__.py index ffb641179..e051e2116 100644 --- a/robyn/__init__.py +++ b/robyn/__init__.py @@ -2,7 +2,6 @@ import logging import os import socket -import sys from typing import Callable, List, Optional, Tuple, Union import multiprocess as mp @@ -49,7 +48,7 @@ def __init__( self.config = config self.dependencies = dependencies - if bool(os.environ.get("ROBYN_CLI", False)) == False: + if not bool(os.environ.get("ROBYN_CLI", False)): # the env variables are already set when are running through the cli load_vars(project_root=directory_path)