Skip to content

Commit

Permalink
Fixed typo in create_ghuser_component
Browse files Browse the repository at this point in the history
  • Loading branch information
arpastrana committed Aug 24, 2022
1 parent 7d2affc commit 7256d0a
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 7256d0a

Please sign in to comment.