Commit f70356d0 authored by delanoe's avatar delanoe

[FIX] wrapping line.

parent 083e20b8
......@@ -55,7 +55,8 @@ class User(Base):
def owns(self, node):
"""check if a given node is owned by the user"""
return (node.user_id == self.id) or node.id in (contact.id for contact in self.contacts())
return (node.user_id == self.id) or \
node.id in (contact.id for contact in self.contacts())
class Contact(Base):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment