Skip to content

Commit 1151e1c

Browse files
Make Readme example python3 compatible
1 parent 1169ef8 commit 1151e1c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@ assembly.add_file(open('PATH/TO/FILE.jpg', 'rb'))
2929
assembly.add_step('resize', '/image/resize', {'width': 70, 'height': 70})
3030
assembly_response = assembly.create(retries=5, wait=True)
3131

32-
print assembly_response.data.get('assembly_id')
32+
print(assembly_response.data.get('assembly_id'))
3333

3434
# or
35-
print assembly_response.data['assembly_id']
35+
print(assembly_response.data['assembly_id'])
3636
```
3737

3838
## Example

0 commit comments

Comments
 (0)