Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. def delete_human(self, human_id):
  2. for human in xrange(len(self.humans)):
  3. if self.humans[human].id == human_id:
  4. human_team_id = self.humans[human].team_id
  5. self.humans.pop(human)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement