We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6f40a9 commit 50a4742Copy full SHA for 50a4742
PyPortal/PyPortal_Astronauts/V2/code.py
@@ -171,9 +171,9 @@ def clear_labels(label_list):
171
# Main loop
172
while True:
173
try:
174
- people_count, astronaut_list = fetch_astronauts()
175
- name_list = build_name_list(astronaut_list)
176
- del astronaut_list
+ people_count, fetched_list = fetch_astronauts()
+ name_list = build_name_list(fetched_list)
+ del fetched_list
177
gc.collect()
178
print("People in space:", people_count)
179
for n in name_list:
0 commit comments