forked from jan/fatamorgana
simplify a comparison
This commit is contained in:
parent
d3ba2ca2af
commit
37bac2af0d
1 changed files with 2 additions and 2 deletions
|
|
@ -1342,7 +1342,7 @@ class GridRepetition:
|
||||||
return True
|
return True
|
||||||
if self.b_vector is None or other.b_vector is None:
|
if self.b_vector is None or other.b_vector is None:
|
||||||
return False
|
return False
|
||||||
if any(self.b_vector[ii] != other.b_vector[ii] for ii in range(2)):
|
if any(self.b_vector[ii] != other.b_vector[ii] for ii in range(2)): # noqa: SIM103
|
||||||
return False
|
return False
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
@ -1580,7 +1580,7 @@ def read_point_list(
|
||||||
assert (dx == 0) or (dy == 0)
|
assert (dx == 0) or (dy == 0)
|
||||||
close_points = [[-dx, -dy]]
|
close_points = [[-dx, -dy]]
|
||||||
elif list_type == 3:
|
elif list_type == 3:
|
||||||
assert (dx == 0) or (dy == 0) or (dx == dy) or (dx == -dy)
|
assert 0 in (dx, dy) or dx in (dy, -dy)
|
||||||
close_points = [[-dx, -dy]]
|
close_points = [[-dx, -dy]]
|
||||||
else:
|
else:
|
||||||
close_points = [[-dx, -dy]]
|
close_points = [[-dx, -dy]]
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue