Skip to content

Commit

Permalink
fixed util function
Browse files Browse the repository at this point in the history
  • Loading branch information
khoroshevskyi committed Aug 8, 2023
1 parent 4cad94c commit d633464
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion peppy/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.40.0a1"
__version__ = "0.40.0a2"
2 changes: 1 addition & 1 deletion peppy/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def grab_project_data(prj):
return {}

try:
return prj[CONFIG_KEY].to_dict()
return dict(prj[CONFIG_KEY])
except KeyError:
raise KeyError("Project lacks section '{}'".format(CONFIG_KEY))

Expand Down

0 comments on commit d633464

Please sign in to comment.