Skip to content

Commit

Permalink
linting (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-groundlight authored Oct 5, 2024
1 parent 418d620 commit 219a525
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/groundlight/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion src/groundlight/experimental_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 219a525

Please sign in to comment.