forked from phoenix/litellm-mirror
refactor(litellm_server/main.py): putting quotes on true as it's a env variable
This commit is contained in:
parent
80c9c58f88
commit
c0f66368f2
1 changed files with 1 additions and 1 deletions
|
@ -2,7 +2,7 @@ import os, litellm
|
|||
import pkg_resources
|
||||
|
||||
def print_verbose(print_statement):
|
||||
if os.environ["SET_VERBOSE"] == True:
|
||||
if os.environ["SET_VERBOSE"] == "True":
|
||||
print(print_statement)
|
||||
|
||||
def get_package_version(package_name):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue