Skip to content

Instantly share code, notes, and snippets.

@talfco
Last active March 16, 2019 23:32
Show Gist options
  • Save talfco/397bea27816cdd4e266a11716082a24a to your computer and use it in GitHub Desktop.
Save talfco/397bea27816cdd4e266a11716082a24a to your computer and use it in GitHub Desktop.
@classmethod
def generate_normalized_name(cls, name_tuple):
name_arr = list(name_tuple)
name_arr.sort()
name_str = ''.join(name_arr)
return name_str.lower()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment