Skip to content

Commit c0cda99

Browse files
committed
Fix my formatting
1 parent 1f1f67e commit c0cda99

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

EXAMPLES.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ For endpoints that require usernames, once a user is authenticated we can use th
6363
```python
6464
for album in client.get_account_albums('me'):
6565
album_title = album.title if album.title else 'Untitled'
66-
print('ID: {0} - {1}'.format(album.id, album_title))
66+
print('Album: {0} ({1})'.format(album_title, album.id))
6767

6868
for image in client.get_album_images(album.id):
6969
image_title = image.title if image.title else 'Untitled'
@@ -75,10 +75,11 @@ For endpoints that require usernames, once a user is authenticated we can use th
7575

7676
***Output***
7777

78-
Album: Qittens! (LPNnY)
79-
Untitled: http://i.imgur.com/b9rL7ew.jpg
80-
Untitled: http://i.imgur.com/Ymg3obW.jpg
81-
Untitled: http://i.imgur.com/kMzbu0S.jpg
82-
...
78+
79+
Album: Qittens! (LPNnY)
80+
Untitled: http://i.imgur.com/b9rL7ew.jpg
81+
Untitled: http://i.imgur.com/Ymg3obW.jpg
82+
Untitled: http://i.imgur.com/kMzbu0S.jpg
83+
...
8384

8485

0 commit comments

Comments
 (0)