File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -138,8 +138,8 @@ def _to_string(self):
138
138
return "ptr"
139
139
140
140
def __eq__ (self , other ):
141
- return isinstance (other , PointerType ) and \
142
- self .addrspace == other .addrspace
141
+ return ( isinstance (other , PointerType ) and
142
+ self .addrspace == other .addrspace )
143
143
144
144
def __hash__ (self ):
145
145
return hash (PointerType )
@@ -181,8 +181,8 @@ def __eq__(self, other):
181
181
if isinstance (other , _TypedPointerType ):
182
182
return (self .pointee , self .addrspace ) == (other .pointee ,
183
183
other .addrspace )
184
- return isinstance (other , PointerType ) and \
185
- self .addrspace == other .addrspace
184
+ return ( isinstance (other , PointerType ) and
185
+ self .addrspace == other .addrspace )
186
186
187
187
def __hash__ (self ):
188
188
return hash (_TypedPointerType )
You can’t perform that action at this time.
0 commit comments