Skip to content

Commit e5b1ba2

Browse files
committed
Removed spaces before operators
1 parent f660d83 commit e5b1ba2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

meshroom/core/graph.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,10 @@ def __init__(self, x=0, y=0, right=0, bottom=0):
110110
self._bottom = bottom
111111

112112
# Properties
113-
x = property(lambda self: self._x)
114-
y = property(lambda self: self._y)
115-
right = property(lambda self: self._right)
116-
bottom = property(lambda self: self._bottom)
113+
x = property(lambda self: self._x)
114+
y = property(lambda self: self._y)
115+
right = property(lambda self: self._right)
116+
bottom = property(lambda self: self._bottom)
117117

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

0 commit comments

Comments
 (0)