@@ -795,9 +795,11 @@ def add_src_requirement(
795795 projection ,
796796 legion .LEGION_READ_ONLY ,
797797 coherence ,
798- upper_bound .get_root ().handle
799- if parent is None
800- else parent .handle ,
798+ (
799+ upper_bound .get_root ().handle
800+ if parent is None
801+ else parent .handle
802+ ),
801803 tag ,
802804 False ,
803805 )
@@ -808,9 +810,11 @@ def add_src_requirement(
808810 projection ,
809811 legion .LEGION_READ_ONLY ,
810812 coherence ,
811- upper_bound .get_root ().handle
812- if parent is None
813- else parent .handle ,
813+ (
814+ upper_bound .get_root ().handle
815+ if parent is None
816+ else parent .handle
817+ ),
814818 tag ,
815819 False ,
816820 )
@@ -874,9 +878,11 @@ def add_dst_requirement(
874878 projection ,
875879 privilege ,
876880 coherence ,
877- upper_bound .get_root ().handle
878- if parent is None
879- else parent .handle ,
881+ (
882+ upper_bound .get_root ().handle
883+ if parent is None
884+ else parent .handle
885+ ),
880886 tag ,
881887 False ,
882888 )
@@ -887,9 +893,11 @@ def add_dst_requirement(
887893 projection ,
888894 redop ,
889895 coherence ,
890- upper_bound .get_root ().handle
891- if parent is None
892- else parent .handle ,
896+ (
897+ upper_bound .get_root ().handle
898+ if parent is None
899+ else parent .handle
900+ ),
893901 tag ,
894902 False ,
895903 )
@@ -901,9 +909,11 @@ def add_dst_requirement(
901909 projection ,
902910 privilege ,
903911 coherence ,
904- upper_bound .get_root ().handle
905- if parent is None
906- else parent .handle ,
912+ (
913+ upper_bound .get_root ().handle
914+ if parent is None
915+ else parent .handle
916+ ),
907917 tag ,
908918 False ,
909919 )
@@ -914,9 +924,11 @@ def add_dst_requirement(
914924 projection ,
915925 redop ,
916926 coherence ,
917- upper_bound .get_root ().handle
918- if parent is None
919- else parent .handle ,
927+ (
928+ upper_bound .get_root ().handle
929+ if parent is None
930+ else parent .handle
931+ ),
920932 tag ,
921933 False ,
922934 )
@@ -980,9 +992,11 @@ def add_src_indirect_requirement(
980992 field .fid if isinstance (field , FieldID ) else field ,
981993 ),
982994 coherence ,
983- upper_bound .get_root ().handle
984- if parent is None
985- else parent .handle ,
995+ (
996+ upper_bound .get_root ().handle
997+ if parent is None
998+ else parent .handle
999+ ),
9861000 tag ,
9871001 is_range ,
9881002 False ,
@@ -997,9 +1011,11 @@ def add_src_indirect_requirement(
9971011 field .fid if isinstance (field , FieldID ) else field ,
9981012 ),
9991013 coherence ,
1000- upper_bound .get_root ().handle
1001- if parent is None
1002- else parent .handle ,
1014+ (
1015+ upper_bound .get_root ().handle
1016+ if parent is None
1017+ else parent .handle
1018+ ),
10031019 tag ,
10041020 is_range ,
10051021 False ,
@@ -1053,9 +1069,11 @@ def add_dst_indirect_requirement(
10531069 field .fid if isinstance (field , FieldID ) else field ,
10541070 ),
10551071 coherence ,
1056- upper_bound .get_root ().handle
1057- if parent is None
1058- else parent .handle ,
1072+ (
1073+ upper_bound .get_root ().handle
1074+ if parent is None
1075+ else parent .handle
1076+ ),
10591077 tag ,
10601078 is_range ,
10611079 False ,
@@ -1070,9 +1088,11 @@ def add_dst_indirect_requirement(
10701088 field .fid if isinstance (field , FieldID ) else field ,
10711089 ),
10721090 coherence ,
1073- upper_bound .get_root ().handle
1074- if parent is None
1075- else parent .handle ,
1091+ (
1092+ upper_bound .get_root ().handle
1093+ if parent is None
1094+ else parent .handle
1095+ ),
10761096 tag ,
10771097 is_range ,
10781098 False ,
0 commit comments