Fix flake8-docstrings D202 No blank lines allowed after function docstring

This commit is contained in:
Labrys of Knossos 2019-04-07 13:26:13 -04:00
commit 70fa47394e
2 changed files with 0 additions and 2 deletions

View file

@ -141,7 +141,6 @@ class DelugeClient(object):
:param username: str, the username to login with
:param password: str, the password to login with
"""
# Connect transport
self.transfer.connect((host, port))

View file

@ -32,7 +32,6 @@ class UTorrentClient(object):
def _make_opener(self, realm, base_url, username, password):
"""uTorrent API need HTTP Basic Auth and cookie support for token verify."""
auth_handler = HTTPBasicAuthHandler()
auth_handler.add_password(realm=realm,
uri=base_url,