Skip to content

Commit 80ec2ca

Browse files
author
Arthur Debert
committed
Fixing readme markdown
1 parent 26bcb6b commit 80ec2ca

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

README.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,22 @@ Usage
2323
-----
2424

2525
Sample usage:
26-
26+
```python
2727
from pipedrive import PipedriveAPI
2828
api = PipedriveAPI('your api token')
2929
print api.deal.detail(200).user.email # [email protected]
30+
```
3031

3132

3233
Creating an activity:
33-
34+
```python
3435
from activity import Activity
3536
activity = Activity(raw_data={'subject': "Do something", 'type': "Call me!"})
3637
created_activity = api.activity.create(activity)
3738
print created_activity.id
38-
39+
```
40+
41+
3942

4043
Current Status
4144
--------------

0 commit comments

Comments
 (0)