Skip to content

Commit 50a4742

Browse files
authored
Add files via upload
1 parent e6f40a9 commit 50a4742

File tree

1 file changed

+3
-3
lines changed
  • PyPortal/PyPortal_Astronauts/V2

1 file changed

+3
-3
lines changed

PyPortal/PyPortal_Astronauts/V2/code.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,9 @@ def clear_labels(label_list):
171171
# Main loop
172172
while True:
173173
try:
174-
people_count, astronaut_list = fetch_astronauts()
175-
name_list = build_name_list(astronaut_list)
176-
del astronaut_list
174+
people_count, fetched_list = fetch_astronauts()
175+
name_list = build_name_list(fetched_list)
176+
del fetched_list
177177
gc.collect()
178178
print("People in space:", people_count)
179179
for n in name_list:

0 commit comments

Comments
 (0)