Skip to content

Commit

Permalink
Merge pull request #9 from arpastrana/main
Browse files Browse the repository at this point in the history
Fixed typo in `create_ghuser_component`
  • Loading branch information
gonzalocasas authored Aug 24, 2022
2 parents 7d2affc + 7256d0a commit e39c4b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions componentize.py
Original file line number Diff line number Diff line change
Expand Up @@ -273,8 +273,8 @@ def create_ghuser_component(source, target, version=None, prefix=None):
po_chunk.SetBoolean('Optional', po.get('optional', False))
po_chunk.SetInt32('SourceCount', 0)
po_chunk.SetGuid('InstanceGuid', output_instance_guid)
po_chunk.SetBoolean('ReverseData', pi.get('reverse', False))
po_chunk.SetBoolean('SimplifyData', pi.get('simplify', False))
po_chunk.SetBoolean('ReverseData', po.get('reverse', False))
po_chunk.SetBoolean('SimplifyData', po.get('simplify', False))
# Mutually exclusive options
if po.get('flatten', False):
po_chunk.SetInt32('Mapping', 1)
Expand Down

0 comments on commit e39c4b9

Please sign in to comment.