g
In [2]: a = 'a'
In [3]: if a == True:
...: print("true")
...:
In [4]: if a:
...: print("true")
...:
true
Size: a a a
g
In [2]: a = 'a'
In [3]: if a == True:
...: print("true")
...:
In [4]: if a:
...: print("true")
...:
true
g
g
S
In [2]: a = 'a'
In [3]: if a == True:
...: print("true")
...:
In [4]: if a:
...: print("true")
...:
true
B
g
B
S
KC
S
IS
g
g
IS
S
g
B
BK
def test_get_action_item_by_installation_item_id_v2(self, api_v2):
with open('action_item_id.txt', 'r') as outfile:
fresh_ai_id = outfile.read()
print(fresh_ai_id)
res = api_v2.request(method='GET',
url=endpoints.WATCH_LIST + f"get-action-item-v2?action_item_id={fresh_ai_id}&{ACCESS_TOKEN_AMD_}")
assert res.status_code == 200
assert 'error' not in res.text
BK