We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9aa7041 commit 404f6f4Copy full SHA for 404f6f4
README.md
@@ -49,11 +49,11 @@ computers = jps.records.Computers()
49
if "test" not in computers:
50
# Create the record (record is auto-saved)
51
test_computer = jps.records.Computers().create({'general':{'name': 'test'}})
52
- safe_to_delete = True
+ safe_to_delete = True # Remember that we created the record and delete it later
53
else:
54
# Get the existing record
55
results = computers.recordsWithName("test")
56
- safe_to_delete = False
+ safe_to_delete = False # Don't delete the record later
57
58
# Note, it's possible to create computers with the same name using the API, so you
59
# must work with multiple records
0 commit comments