Skip to content

Commit

Permalink
Silence Pylint's too-many-statements, too-many-branches.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilk committed Feb 12, 2024
1 parent 123a02c commit f453d30
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions abdicate
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ class UserAgent():
def post(self, url, *, data):
return self._request(url, method='POST', data=data)

# pylint: disable=too-many-statements,too-many-branches
def main():
ap = argparse.ArgumentParser()
ap.add_argument('--debug', action='store_true', help=argparse.SUPPRESS)
Expand Down

0 comments on commit f453d30

Please sign in to comment.