Skip to content

Commit ccd685d

Browse files
committed
fix validation
1 parent c4d1953 commit ccd685d

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

examples/bulk_upload.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
from jupiterone.client import JupiterOneClient
2-
import random
3-
import time
42
import os
5-
import json
63

74
account = os.environ.get("JUPITERONE_ACCOUNT")
85
token = os.environ.get("JUPITERONE_TOKEN")

examples/sync_job_workflow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def main():
3131
sys.exit(1)
3232

3333
# Create JupiterOne client
34-
j1 = JupiterOneClient(api_token=api_token, account_id=account_id)
34+
j1 = JupiterOneClient(token=api_token, account=account_id)
3535

3636
print("=== JupiterOne Sync Job Workflow Example ===\n")
3737

0 commit comments

Comments
 (0)