Skip to content

Commit

Permalink
disable remaining pylint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
f-wright committed Jan 18, 2025
1 parent 2676495 commit 1766201
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/groundlight/experimental_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
from .client import DEFAULT_REQUEST_TIMEOUT, Groundlight, logger


class ExperimentalApi(Groundlight):
class ExperimentalApi(Groundlight): # pylint: disable=too-many-public-methods
def __init__(
self,
endpoint: Union[str, None] = None,
Expand Down Expand Up @@ -174,7 +174,7 @@ def make_webhook_action(self, url: str, include_image: bool) -> WebhookAction:
include_image=include_image,
)

def create_alert( # pylint: disable=too-many-locals # noqa: PLR0913
def create_alert( # pylint: disable=too-many-locals, too-many-arguments # noqa: PLR0913
self,
detector: Union[str, Detector],
name,
Expand Down

0 comments on commit 1766201

Please sign in to comment.