Skip to content

Commit e82123e

Browse files
author
Tom Willis
committed
docstring formatting
1 parent b76b337 commit e82123e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

webobtoolkit/client.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,7 @@ def get(self, url, query_string=None, headers={}, assert_=None):
8787
assert_=assert_)
8888

8989
def head(self, url, query_string=None, headers={}, assert_=None):
90-
"""
91-
make an HTTP HEAD Request and return the response
90+
"""make an HTTP HEAD Request and return the response
9291
9392
:rtype: :class:`webob.Response`
9493
@@ -98,7 +97,11 @@ def head(self, url, query_string=None, headers={}, assert_=None):
9897
9998
:param headers: extra headers for the request
10099
101-
:param assert: a callback to be ran after the response is recieved in the form of lambda: request, response: True . If present it will be ran for this call only rather than the one set on the client
100+
:param assert: a callback to be ran after the response is
101+
recieved in the form of lambda: request, response: True . If
102+
present it will be ran for this call only rather than the one
103+
set on the client
104+
102105
"""
103106

104107
return self(url=url,

0 commit comments

Comments
 (0)