]> arthur.barton.de Git - bup.git/blobdiff - lib/bup/hashsplit.py
pylint: check for trailing whitespace
[bup.git] / lib / bup / hashsplit.py
index 94d93ed36746ebb31e9dfa4bdf11ca1a205af80c..ff00e54b3cd46b4fda1b30827e03762c7ebce025 100644 (file)
@@ -2,9 +2,9 @@
 from __future__ import absolute_import
 import io, math, os
 
-from bup import _helpers, compat, helpers
+from bup import _helpers, helpers
 from bup._helpers import cat_bytes
-from bup.compat import buffer, py_maj
+from bup.compat import buffer
 from bup.helpers import sc_page_size
 
 
@@ -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