Skip to content

Instantly share code, notes, and snippets.

@timkofu
Created June 20, 2020 15:40
Show Gist options
  • Save timkofu/82e9a6e2f6c2dd120aeca548864f7e01 to your computer and use it in GitHub Desktop.
Save timkofu/82e9a6e2f6c2dd120aeca548864f7e01 to your computer and use it in GitHub Desktop.
class UniqueItems(list):
def append(self, item):
if item not in self:
super(UniqueItems, self).append(item)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment