]> arthur.barton.de Git - bup.git/blobdiff - lib/bup/hashsplit.py
pylint: check for trailing whitespace
[bup.git] / lib / bup / hashsplit.py
index 16ccbb15f8152935567707defe84c9d3b26013aa..ff00e54b3cd46b4fda1b30827e03762c7ebce025 100644 (file)
@@ -37,12 +37,12 @@ class Buf:
             self.data = cat_bytes(self.data, self.start, remaining,
                                   s, 0, len(s))
             self.start = 0
-            
+
     def peek(self, count):
         if count <= 256:
             return self.data[self.start : self.start + count]
         return buffer(self.data, self.start, count)
-    
+
     def eat(self, count):
         self.start += count