1
0
mirror of https://github.com/instaloader/instaloader.git synced 2024-09-17 11:02:23 +02:00

Satisfy pylint

This commit is contained in:
André Koch-Kramer 2017-07-14 05:37:36 +02:00
parent ca2829becc
commit 8607135740

View File

@ -193,7 +193,7 @@ class Instaloader:
data = data["edge_owner_to_timeline_media"] data = data["edge_owner_to_timeline_media"]
else: else:
raise ProfileNotExistsException("No profile found, the user may have blocked you (ID: " + raise ProfileNotExistsException("No profile found, the user may have blocked you (ID: " +
str(profile_id) + ").") str(profile_id) + ").")
if not data['edges']: if not data['edges']:
if data['count'] == 0: if data['count'] == 0:
raise ProfileHasNoPicsException("Profile with ID {0}: no pics found.".format(str(profile_id))) raise ProfileHasNoPicsException("Profile with ID {0}: no pics found.".format(str(profile_id)))
@ -686,7 +686,6 @@ class Instaloader:
has changed and return current name of the profile, and store ID of profile. has changed and return current name of the profile, and store ID of profile.
""" """
profile_exists = len(json_data["entry_data"]) > 0 and "ProfilePage" in json_data["entry_data"] profile_exists = len(json_data["entry_data"]) > 0 and "ProfilePage" in json_data["entry_data"]
is_logged_in = json_data["config"]["viewer"] is not None
if self.profile_subdirs: if self.profile_subdirs:
id_filename = profile + "/id" id_filename = profile + "/id"
else: else: