fix: Set value default True for Truthy cls

This commit is contained in:
Gavin D'souza 2024-05-01 17:43:19 +02:00
parent 179305495a
commit 36c80b77a4
No known key found for this signature in database
GPG key ID: 5413A43FBD450A34

View file

@ -1171,7 +1171,7 @@ class CallbackManager:
class Truthy:
def __init__(self, value=UNSET, context=UNSET):
def __init__(self, value=True, context=UNSET):
self.value = value
self.context = context