Skip to content

Commit

Permalink
fix: unclosed file error (#1191)
Browse files Browse the repository at this point in the history
fixes warnings received when using superagi. fixes issue #1127
  • Loading branch information
aryan-rajoria authored Sep 22, 2023
1 parent 636c2e1 commit 097cec0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions evadb/utils/generic_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 201,7 @@ def parse_config_yml():

f = open(Path(EvaDB_INSTALLATION_DIR) / "evadb.yml", "r ")
config_obj = yaml.load(f, Loader=yaml.FullLoader)
f.close()
return config_obj


Expand Down

0 comments on commit 097cec0

Please sign in to comment.