Skip to content

Commit

Permalink
Clean up tests/CoaddApCorrMap.py
Browse files Browse the repository at this point in the history
Remove unused imports and one variable that was assigned to
but never touched again.
  • Loading branch information
r-owen committed Aug 7, 2015
1 parent 59b59a5 commit 9caa038
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions tests/CoaddApCorrMap.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -28,28 +28,16 @@
python CoaddApCorr.py
"""

import os, sys
from math import *
import os
import numpy
import unittest
import eups
import lsst.utils.tests as utilsTests
import lsst.pex.exceptions as pexExceptions
import lsst.pex.logging as logging

import math
import pdb
import numpy

import lsst.pex.config as pexConfig
import lsst.utils.tests as utilsTests
import lsst.afw.geom as afwGeom
import lsst.afw.math as afwMath
import lsst.afw.detection as afwDetection
import lsst.afw.table as afwTable
import lsst.afw.image as afwImage
import lsst.afw.coord as afwCoord
import lsst.pipe.base as pipeBase
import lsst.afw.cameraGeom as cameraGeom
import lsst.meas.algorithms as measAlg
from lsst.afw.geom.polygon import Polygon

Expand Down Expand Up @@ -79,7 +67,6 @@ def test(self):
validBox = afwGeom.Box2I(afwGeom.Point2I(0, 0), afwGeom.Extent2I(7, 7))
pointList = []
pointListValid = []
overlapping = []

for i in range(num):
value = numpy.array([[1]], dtype=float) # Constant with value = i+1
Expand Down

0 comments on commit 9caa038

Please sign in to comment.