# `enum.unique`

The module `enum` provides [a decorator `unique`](https://docs.python.org/3/library/enum.html#enum.unique) that checks if the enumeration decorated doesn't contain any aliases.
If you think this is too simple, go ahead and try implementing [`verify`](https://docs.python.org/3/library/enum.html#enum.verify) instead.

(You can [learn more about the module `enum` in this article](https://mathspp.com/blog/module-enum-overview#check-value-uniqueness).)
