Skip to content

Commit

Permalink
Configure linter to allow init method complexity
Browse files Browse the repository at this point in the history
  • Loading branch information
jshcodes committed Jul 24, 2024
1 parent 5416161 commit 8bc9b66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/falconpy/_auth_object/_falcon_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ class FalconInterface(BaseFalconAuth):
# The default constructor for all authentication objects. Ingests provided credentials
# and sets the necessary class attributes based upon the authentication detail received.
# pylint: disable=R0912,R0913,R0914
def __init__(self,
def __init__(self, # noqa: C901
access_token: Optional[Union[str, bool]] = False,
base_url: Optional[str] = "https://api.crowdstrike.com",
creds: Optional[Dict[str, str]] = None,
Expand Down

0 comments on commit 8bc9b66

Please sign in to comment.