From 2f53debffa45900177d2878e65c4e53b5fc58e92 Mon Sep 17 00:00:00 2001 From: Alexander Graf Date: Fri, 29 Jul 2016 18:02:36 +0200 Subject: [PATCH] Disable pylint warning for download() --- instaloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/instaloader.py b/instaloader.py index 1711859..64107cd 100755 --- a/instaloader.py +++ b/instaloader.py @@ -303,7 +303,7 @@ def get_session(user, passwd): def download(name, session, profile_pic_only=False, download_videos=True, fast_update=False, sleep_min_max=[0.25,2], quiet=False): """Download one profile""" - # pylint:disable=too-many-arguments + # pylint:disable=too-many-arguments,too-many-branches # Get profile main page json data = get_json(name, session) if len(data["entry_data"]) == 0 or "ProfilePage" not in data["entry_data"]: