Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdstein committed Feb 6, 2024
1 parent 5ec9590 commit 98c31a3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions winterapi/messenger.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
logger = logging.getLogger(__name__)


class WinterAPI(BaseAPI):
class WinterAPI(BaseAPI): # pylint: disable=too-many-public-methods
"""
Class to communicate with the Winter API
"""
Expand Down Expand Up @@ -471,7 +471,7 @@ def query_images_by_program(

return self.query_images(query=query)

def query_images_by_target_name(
def query_images_by_target_name( # pylint: disable=too-many-arguments
self,
program_name: str,
target_name: str | None,
Expand Down Expand Up @@ -510,7 +510,7 @@ def query_images_by_target_name(

return self.query_images(query=query)

def query_images_by_cone(
def query_images_by_cone( # pylint: disable=too-many-arguments
self,
program_name: str,
ra_deg: float,
Expand Down Expand Up @@ -555,7 +555,7 @@ def query_images_by_cone(

return self.query_images(query=query)

def query_images_by_rectangle(
def query_images_by_rectangle( # pylint: disable=too-many-arguments
self,
program_name: str,
ra_min_deg: float,
Expand Down

0 comments on commit 98c31a3

Please sign in to comment.