We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ff6032 commit 56b134bCopy full SHA for 56b134b
README.rst
@@ -4,12 +4,12 @@ Detailed `documentation <http://readthedocs.org/docs/python-intercom/>`_ is avai
4
5
Typical usage:
6
7
-::
+.. code:: python
8
9
- from intercom import Intercom
10
- Intercom.app_id = 'app-id'
11
- Intercom.api_key = 'api-key'
+ from intercom import Intercom
+ Intercom.app_id = 'app-id'
+ Intercom.api_key = 'api-key'
12
13
- from intercom import User
14
- for user in User.all():
15
- print user.email
+ from intercom import User
+ for user in User.all():
+ print user.email
0 commit comments