Skip to content

Instantly share code, notes, and snippets.

@libbkmz
Created July 7, 2012 13:13
Show Gist options
  • Save libbkmz/3066435 to your computer and use it in GitHub Desktop.
Save libbkmz/3066435 to your computer and use it in GitHub Desktop.
def search_id(self, text):
for i, parent in enumerate(self.cats):
for j, sub in enumerate(parent.sub_rubs):
if sub.name == text:
return sub.id
if parent.name == text:
return parent.id
raise IndexError
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment