mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-25 17:58:40 +08:00
Add precise values for enum members where possible (#11299)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com> Co-authored-by: Alex Waygood <alex.waygood@gmail.com>
This commit is contained in:
@@ -10,6 +10,6 @@ class Reservoir:
|
||||
def TTL(self): ...
|
||||
|
||||
class ReservoirDecision(Enum):
|
||||
TAKE: str
|
||||
BORROW: str
|
||||
NO: str
|
||||
TAKE = "take"
|
||||
BORROW = "borrow"
|
||||
NO = "no"
|
||||
|
||||
Reference in New Issue
Block a user