Skip to content

Commit

Permalink
chore: fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
VishnuSanal committed Jul 19, 2024
1 parent 0d2556d commit 8f3c442
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions robyn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import logging
import os
import socket
import sys
from typing import Callable, List, Optional, Tuple, Union

import multiprocess as mp
Expand Down Expand Up @@ -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)

Expand Down

0 comments on commit 8f3c442

Please sign in to comment.