Browse Source

Moved an import for pylint

dstromberg 9 years ago
parent
commit
1de2d48f19
1 changed files with 6 additions and 4 deletions
  1. 6 4
      bloom_filter_mod.py

+ 6 - 4
bloom_filter_mod.py

@@ -18,10 +18,6 @@ import os
 import math
 import array
 import random
-#mport bufsock
-#mport hashlib
-#mport numbers
-import python2x3
 
 try:
     import mmap as mmap_mod
@@ -31,6 +27,12 @@ except ImportError:
 else:
     HAVE_MMAP = True
 
+#mport bufsock
+#mport hashlib
+#mport numbers
+
+import python2x3
+
 # In the literature:
 # k is the number of probes - we call this num_probes_k
 # m is the number of bits in the filter - we call this num_bits_m