From b034c8703abcde4a655474bba94799162957e822 Mon Sep 17 00:00:00 2001 From: Jakub Roztocil Date: Fri, 1 Jan 2016 18:41:58 -0300 Subject: [PATCH] PEP8 --- httpie/client.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/httpie/client.py b/httpie/client.py index d55ce62c..1115f4dd 100644 --- a/httpie/client.py +++ b/httpie/client.py @@ -15,9 +15,10 @@ try: # https://urllib3.readthedocs.org/en/latest/security.html urllib3.disable_warnings() except AttributeError: - # In some rare cases, the user may have an old version of the requests or urllib3, - # and there is no method called "disable_warnings." In these cases, we don't need to call - # the method. They may get some noisy output but execution shouldn't die. Move on + # In some rare cases, the user may have an old version of the requests + # or urllib3, and there is no method called "disable_warnings." In these + # cases, we don't need to call the method. + # They may get some noisy output but execution shouldn't die. Move on. pass