From 073a4ca2bbbd5740dc5140984fb9c428f3e001d1 Mon Sep 17 00:00:00 2001 From: Andrew Herrington Date: Wed, 15 Dec 2021 21:31:07 -0600 Subject: [PATCH] fix docs --- docs/usage.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/usage.rst b/docs/usage.rst index 5e6542c..699349a 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -32,7 +32,7 @@ If you are using a self-hosted healthchecks instance, you can set the api url wh Creating a new Check ^^^^^^^^^^^^^^^^^^^^ -... code-block:: python +.. code-block:: python from healthchecks_io import Client, CheckCreate @@ -44,7 +44,7 @@ Creating a new Check Getting a Check ^^^^^^^^^^^^^^^ -... code-block:: python +.. code-block:: python from healthchecks_io import Client @@ -56,7 +56,7 @@ Getting a Check Pinging a Check ^^^^^^^^^^^^^^^ -... code-block:: python +.. code-block:: python from healthchecks_io import Client client = Client(api_key="myapikey") @@ -70,7 +70,7 @@ If you want to use the client in an async program, use AsyncClient instead of Cl -... code-block:: python +.. code-block:: python from healthchecks_io import AsyncClient, CheckCreate