Skip to content

Commit

Permalink
set union of function results
Browse files Browse the repository at this point in the history
  • Loading branch information
ptgm committed Jun 16, 2024
1 parent b9f2982 commit e66711e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/checkRules.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
print('f:', f)
print('lParents:', lParents)
print('lP[i]:', lParents[i])
print('lP[i].children:', sChildren)
print('lP[i].children:', s1Children | s2Children | s3Children)
sys.exit()
# check parent children -- end
f = lParents[i]
Expand All @@ -64,7 +64,7 @@
print('f:', f)
print('lChildren:', lChildren)
print('lC[i]:', lChildren[i])
print('lC[i].parents:', sParents)
print('lC[i].parents:', s1Parents | s2Parents | s3Parents)
sys.exit()
# check child parents -- end
f = lChildren[i]
Expand Down

0 comments on commit e66711e

Please sign in to comment.