Skip to content

Commit c747411

Browse files
committed
fixes
1 parent b01d73d commit c747411

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@
294294
list_alert_rules_r = j1.list_alert_rules()
295295
print("list_configured_alert_rules()")
296296
print(list_alert_rules_r)
297-
print(len(list_alert_rules_r['questionInstances']))
297+
print(len(list_alert_rules_r))
298298

299299
# create_alert_rule
300300
webhook_token = "<SECRET>"

jupiterone/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -730,7 +730,7 @@ def list_alert_rules(self):
730730

731731
cursor = r['data']['listRuleInstances']['pageInfo']['endCursor']
732732

733-
# cursor query until reached last page
733+
# cursor query until last page fetched
734734
data = {
735735
"query": LIST_RULE_INSTANCES,
736736
"variables": {

0 commit comments

Comments
 (0)