Skip to content

Commit

Permalink
Update member invocation
Browse files Browse the repository at this point in the history
  • Loading branch information
atuonufure committed Jan 9, 2024
1 parent 23eed48 commit 6366d55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fhirpathpy/engine/evaluators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def time_literal(ctx, parentData, node):
def create_reduce_member_invocation(model, key):
def func(acc, res):
res = nodes.ResourceNode.create_node(res)
childPath = f"{res.path}.{key}" if res.path else key
childPath = f"{res.path}.{key}" if res.path else f"_.{key}"

actualTypes = None
toAdd = None
Expand Down

0 comments on commit 6366d55

Please sign in to comment.