From 71c1c13e020fc8b5c6a704ff180d01b82104aa96 Mon Sep 17 00:00:00 2001 From: Sean McGuire Date: Thu, 11 Apr 2024 12:18:19 -0400 Subject: [PATCH] pylint --- tests/hipscat/pixel_math/test_healpix_pixel.py | 1 + tests/hipscat/pixel_math/test_healpix_pixel_convertor.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/hipscat/pixel_math/test_healpix_pixel.py b/tests/hipscat/pixel_math/test_healpix_pixel.py index c6b8b7c1..d66a1c5b 100644 --- a/tests/hipscat/pixel_math/test_healpix_pixel.py +++ b/tests/hipscat/pixel_math/test_healpix_pixel.py @@ -41,6 +41,7 @@ def test_pixel_str_and_repr(): assert repr(pix) == test_string +# pylint: disable=pointless-statement def test_pixel_get_item(): order = 3 pixel = 42 diff --git a/tests/hipscat/pixel_math/test_healpix_pixel_convertor.py b/tests/hipscat/pixel_math/test_healpix_pixel_convertor.py index cfa35076..752c9b16 100644 --- a/tests/hipscat/pixel_math/test_healpix_pixel_convertor.py +++ b/tests/hipscat/pixel_math/test_healpix_pixel_convertor.py @@ -1,7 +1,7 @@ import pytest from hipscat.pixel_math import HealpixPixel -from hipscat.pixel_math.healpix_pixel_convertor import HealpixInputTypes, get_healpix_pixel, get_healpix_tuple +from hipscat.pixel_math.healpix_pixel_convertor import get_healpix_pixel, get_healpix_tuple def test_get_healpix_pixel_can_take_either_argument():