Style fixes (make style-check)
authorMarek Marecki <triviuss@gmail.com>
Fri, 5 Jul 2013 22:13:59 +0000 (00:13 +0200)
committerMarek Marecki <triviuss@gmail.com>
Fri, 5 Jul 2013 22:13:59 +0000 (00:13 +0200)
diaspy/models.py
diaspy/people.py
diaspy/streams.py

index 0a7e3cd7f69f98a7e4b0e3092d9d7a18bc518ba8..b840e5f5a1d8a84eb09d4b0566fc2d15233a1e07 100644 (file)
@@ -12,7 +12,7 @@ MUST NOT import anything.
 
 class Aspect():
     """This class represents an aspect.
-    
+
     Class can be initialized by passing either an id and/or name as
     parameters.
     If both are missing, an exception will be raised.
@@ -26,7 +26,7 @@ class Aspect():
             self.id = self._findid()
         elif not id and not name:
             raise Exception("Aspect must be initialized with either an id or name")
-    
+
     def _findname(self):
         """Finds name for aspect.
         """
@@ -37,7 +37,7 @@ class Aspect():
                 name = a['name']
                 break
         return name
-        
+
     def _findid(self):
         """Finds id for aspect.
         """
index 2e94fab9acd232c8c4c297a7d1705c12ffbef46e..aa4cf9f0a3c0e662a0e43b5cc87d9ccd9f75088d 100644 (file)
@@ -12,11 +12,11 @@ class User():
 
     The parameter fetch should be either 'posts', 'data' or 'none'. By
     default it is 'posts' which means in addition to user data, stream
-    will be fetched. If user has not posted yet diaspy will not be able 
-    to extract the information from his/her posts. Since there is no official 
-    way to do it we rely on user posts. If this will be the case user 
+    will be fetched. If user has not posted yet diaspy will not be able
+    to extract the information from his/her posts. Since there is no official
+    way to do it we rely on user posts. If this will be the case user
     will be notified with appropriate exception message.
-    
+
     If fetch is 'data', only user data will be fetched. If the user is
     not found, no exception will be returned.
 
@@ -57,7 +57,7 @@ class User():
         handle = self['handle'].split('@')
         pod, user = handle[1], handle[0]
         return (pod, user)
-        
+
     def _finalize_data(self, data, names):
         final = {}
         for d, f in names:
@@ -97,7 +97,7 @@ class User():
         """
         request = self._connection.get('people/{0}.json'.format(self['guid']))
         self._postproc(request)
-        
+
     def fetchprofile(self, protocol='https'):
         """Fetch user data using Diaspora handle.
         """
index 9b571f089b4b37e794aa83245eebfa0a8233a936..2a3c233750067df39f845dad204cbcfb398275fc 100644 (file)
@@ -105,7 +105,7 @@ class Generic():
     def update(self):
         """Updates stream.
         """
-        self._update( self._obtain())
+        self._update(self._obtain())
 
     def fill(self):
         """Fills the stream with posts.