From 803d8d7933bbaf98b1a3140454a82c760f991f86 Mon Sep 17 00:00:00 2001 From: MasterofJOKers Date: Thu, 12 Mar 2015 15:56:48 +0100 Subject: [PATCH] [genPOI] sort list of imports Easier to see if an import is already there. --- overviewer_core/aux_files/genPOI.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/overviewer_core/aux_files/genPOI.py b/overviewer_core/aux_files/genPOI.py index f9d3d32..c62e1be 100755 --- a/overviewer_core/aux_files/genPOI.py +++ b/overviewer_core/aux_files/genPOI.py @@ -14,16 +14,16 @@ markers.js holds a list of which markerSets are attached to each tileSet ''' -import os -import time -import logging -import json -import sys -import re -import urllib2 -import multiprocessing -import itertools import gzip +import itertools +import json +import logging +import multiprocessing +import os +import re +import sys +import time +import urllib2 from collections import defaultdict from multiprocessing import Pool