Skip to content

Commit

Permalink
Removed spaces before operators
Browse files Browse the repository at this point in the history
  • Loading branch information
waaake committed Oct 22, 2024
1 parent f660d83 commit e5b1ba2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions meshroom/core/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,10 +110,10 @@ def __init__(self, x=0, y=0, right=0, bottom=0):
self._bottom = bottom

# Properties
x = property(lambda self: self._x)
y = property(lambda self: self._y)
right = property(lambda self: self._right)
bottom = property(lambda self: self._bottom)
x = property(lambda self: self._x)
y = property(lambda self: self._y)
right = property(lambda self: self._right)
bottom = property(lambda self: self._bottom)

def __contains__(self, point):
""" Returns True if the provided Point is present in the Region.
Expand Down

0 comments on commit e5b1ba2

Please sign in to comment.