Sephfox commited on
Commit
ee32a30
1 Parent(s): b0028e8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -36,7 +36,7 @@ class HiveMind:
36
 
37
  def update_collective_memory(self, ant_memories):
38
  for ant_memory in ant_memories:
39
- for position, info in ant_memory:
40
  if position not in self.collective_memory:
41
  self.collective_memory[position] = info
42
  else:
 
36
 
37
  def update_collective_memory(self, ant_memories):
38
  for ant_memory in ant_memories:
39
+ for position, info in ant_memory:
40
  if position not in self.collective_memory:
41
  self.collective_memory[position] = info
42
  else: