Skip to content

Commit

Permalink
move pylint disable before the func
Browse files Browse the repository at this point in the history
  • Loading branch information
mwwoda committed Jul 10, 2024
1 parent cdaa662 commit abe4cd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion boxsdk/client/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1512,8 +1512,8 @@ def sign_request(self, sign_request_id: str) -> 'SignRequest':
"""
return self.translator.get('sign_request')(session=self._session, object_id=sign_request_id)

def __create_sign_request(
# pylint: disable=too-many-branches
def __create_sign_request(
self,
signers: Iterable,
files: Optional[Iterable] = None,
Expand Down

0 comments on commit abe4cd9

Please sign in to comment.