diff options
Diffstat (limited to 'pre_commit/envcontext.py')
-rw-r--r-- | pre_commit/envcontext.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/pre_commit/envcontext.py b/pre_commit/envcontext.py index 4ab0d8c..92d975d 100644 --- a/pre_commit/envcontext.py +++ b/pre_commit/envcontext.py @@ -8,11 +8,7 @@ from typing import Optional from typing import Tuple from typing import Union - -class _Unset(enum.Enum): - UNSET = 1 - - +_Unset = enum.Enum('_Unset', 'UNSET') UNSET = _Unset.UNSET |