Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
kennymckormick committed Mar 19, 2024
1 parent 54d7233 commit cb74ff8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vlmeval/smp/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ def load_env():
warnings.warn('VLMEval is not installed. Failed to import environment variables from .env file. ')
return
pth = osp.realpath(vlmeval.__path__[0])
pth = osp.join('../.env')
pth = osp.join(pth, '../.env')
pth = osp.realpath(pth)
if not osp.exists(pth):
warnings.warn(f'Did not detect the .env file at {pth}, failed to load. ')
Expand Down

0 comments on commit cb74ff8

Please sign in to comment.