From 219a525b82187b420de094027470249a72e14b9f Mon Sep 17 00:00:00 2001 From: Brandon <132288221+brandon-groundlight@users.noreply.github.com> Date: Fri, 4 Oct 2024 19:41:30 -0700 Subject: [PATCH] linting (#259) --- src/groundlight/client.py | 2 +- src/groundlight/experimental_api.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/groundlight/client.py b/src/groundlight/client.py index 11f79d73..a82a2f23 100644 --- a/src/groundlight/client.py +++ b/src/groundlight/client.py @@ -245,7 +245,7 @@ def list_detectors(self, page: int = 1, page_size: int = 10) -> PaginatedDetecto ) return PaginatedDetectorList.parse_obj(obj.to_dict()) - def _prep_create_detector( + def _prep_create_detector( # noqa: PLR0913 # pylint: disable=too-many-arguments, too-many-locals self, name: str, query: str, diff --git a/src/groundlight/experimental_api.py b/src/groundlight/experimental_api.py index be8871cb..5044a45f 100644 --- a/src/groundlight/experimental_api.py +++ b/src/groundlight/experimental_api.py @@ -307,7 +307,7 @@ def reset_detector(self, detector: Union[str, Detector]) -> None: detector = detector.id self.detector_reset_api.reset_detector(detector) - def create_counting_detector( + def create_counting_detector( # noqa: PLR0913 # pylint: disable=too-many-arguments, too-many-locals self, name: str, query: str,