From 5771b42e2f8bbb8f8295b9bd731d9bd6f35e01dc Mon Sep 17 00:00:00 2001 From: Klaus Wik <956137+KWik@users.noreply.github.com> Date: Sun, 26 May 2024 18:28:45 +0200 Subject: [PATCH] Bugfixes in get_users_in_org.py Added imports for random.randint and time.sleep to resolve two bugs. --- samples/get_users_in_org.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/samples/get_users_in_org.py b/samples/get_users_in_org.py index 88b76a9..36c550b 100644 --- a/samples/get_users_in_org.py +++ b/samples/get_users_in_org.py @@ -30,6 +30,9 @@ import json import requests +from random import randint +from time import sleep + # access token obtained via OAuth S2S workflow ACCESS_TOKEN = '' CLIENT_ID = ''