Skip to content

Commit 7eb01b1

Browse files
committed
ignores two warnings as it's just the Flickr API...
1 parent 30b4e03 commit 7eb01b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flickr_download/flick_download.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def download_user(
358358
@param save_json: save photo info as .json file
359359
"""
360360
user = find_user(username)
361-
photosets = Walker(user.getPhotosets)
361+
photosets = Walker(user.getPhotosets) # pylint: disable=E1101
362362
for photoset in photosets:
363363
download_set(photoset.id, get_filename, size_label, skip_download, save_json)
364364

@@ -391,7 +391,7 @@ def print_sets(username: str) -> None:
391391
@param username: the name of the user
392392
"""
393393
user = find_user(username)
394-
photosets = Walker(user.getPhotosets)
394+
photosets = Walker(user.getPhotosets) # pylint: disable=E1101
395395
for photoset in photosets:
396396
print(f"{photoset.id} - {photoset.title}")
397397

0 commit comments

Comments
 (0)