Skip to content

Commit

Permalink
[Fixes #56] Bug: maps create does not unpack dict before return
Browse files Browse the repository at this point in the history
  • Loading branch information
mwallschlaeger committed May 16, 2024
1 parent d799b21 commit 7d93999
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geonoderest/maps.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def create(
endpoint=self.ENDPOINT_NAME,
params=json_content,
)
return r[self.JSON_OBJECT_NAME]
return r[self.SINGULAR_RESOURCE_NAME]



0 comments on commit 7d93999

Please sign in to comment.