Loading client_examples/python/get_patients.py +2 −2 Original line number Diff line number Diff line Loading @@ -42,8 +42,8 @@ patients = data["patients"] if not len(patients): print("Successfully logged in, queried server, but no patients in system!") else: num_p = len(patients)) print("Successfully logged in, queried server and got %d patients"%(num_p) num_p = len(patients) print("Successfully logged in, queried server and got %d patients"%(num_p)) for p in patients: if len(p['note']): print(" [%d] with note '%s'"%(p['id'], p['note'])) Loading Loading
client_examples/python/get_patients.py +2 −2 Original line number Diff line number Diff line Loading @@ -42,8 +42,8 @@ patients = data["patients"] if not len(patients): print("Successfully logged in, queried server, but no patients in system!") else: num_p = len(patients)) print("Successfully logged in, queried server and got %d patients"%(num_p) num_p = len(patients) print("Successfully logged in, queried server and got %d patients"%(num_p)) for p in patients: if len(p['note']): print(" [%d] with note '%s'"%(p['id'], p['note'])) Loading