Minor typos and fixes and updated requirement for Python >= 3.8

This commit is contained in:
Nocturn9x 2022-04-29 11:05:59 +02:00
parent d83317d34a
commit e08b47260f
2 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@ from enum import Enum, auto, EnumMeta
class ContainsEnumMeta(EnumMeta):
"""
Simple metaclass that implements
the item in self operation
the 'item in self' operation
"""
def __contains__(cls, item):

View File

@ -28,5 +28,5 @@ if __name__ == "__main__":
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
],
python_requires=">=3.6",
python_requires=">=3.8",
)