From e34f21377d30704c342abb24a3a84c27fd8cc957 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Thu, 23 Jan 2014 18:11:26 +0100 Subject: Use pep8 check Signed-off-by: Petr Vobornik Signed-off-by: Simo Sorce --- ipsilon/util/user.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'ipsilon/util/user.py') diff --git a/ipsilon/util/user.py b/ipsilon/util/user.py index 6c5fc51..ccca9fb 100755 --- a/ipsilon/util/user.py +++ b/ipsilon/util/user.py @@ -19,12 +19,14 @@ from ipsilon.util.data import Store + class Site(object): def __init__(self, value): # implement lookup of sites id for link/name self.link = value self.name = value + class User(object): def __init__(self, username): if username is None: @@ -76,4 +78,3 @@ class User(object): def sites(self): #TODO: implement setting sites via the user object ? raise AttributeError - -- cgit