From 8efcf4c0fdeef0bd092daefc48101c8182b5e8db Mon Sep 17 00:00:00 2001 From: StevanFreeborn Date: Mon, 2 May 2022 16:29:34 -0500 Subject: [PATCH] update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index aee5068..ef4aacd 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ url = https://api.onspring.com Example constructing `OnspringClient`: -```py +```python import sys from OnspringClient import OnspringClient from configparser import ConfigParser @@ -61,7 +61,7 @@ The examples that follow assume you have created an `OnspringClient` as describe ### Verify connectivity -```py +```python canConnect = client.CanConnect() if canConnect: @@ -72,7 +72,7 @@ else: ### Get Apps -```py +```python response = client.GetApps() print(f'Status Code: {response.statusCode}')