@@ -59,7 +59,7 @@ def __repr__(self):
5959 "slack#/types/entity_ref" ,
6060 "slack#/types/boolean" ,
6161 "slack#/types/link" ,
62- "slack#/types/email"
62+ "slack#/types/email" ,
6363}
6464
6565
@@ -614,11 +614,7 @@ def __repr__(self):
614614class EntityBooleanCheckboxField (JsonObject ):
615615 """Boolean checkbox properties"""
616616
617- attributes = {
618- "type" ,
619- "text" ,
620- "description"
621- }
617+ attributes = {"type" , "text" , "description" }
622618
623619 def __init__ (
624620 self ,
@@ -638,16 +634,11 @@ def __str__(self):
638634 def __repr__ (self ):
639635 return self .__str__ ()
640636
637+
641638class EntityBooleanTextField (JsonObject ):
642639 """Boolean text properties"""
643640
644- attributes = {
645- "type" ,
646- "true_text" ,
647- "false_text" ,
648- "true_description" ,
649- "false_description"
650- }
641+ attributes = {"type" , "true_text" , "false_text" , "true_description" , "false_description" }
651642
652643 def __init__ (
653644 self ,
@@ -659,10 +650,10 @@ def __init__(
659650 ** kwargs ,
660651 ):
661652 self .type = type
662- self .true_text = true_text ,
663- self .false_text = false_text ,
664- self .true_description = true_description ,
665- self .false_description = false_description ,
653+ self .true_text = ( true_text ,)
654+ self .false_text = ( false_text ,)
655+ self .true_description = ( true_description ,)
656+ self .false_description = ( false_description ,)
666657 self .additional_attributes = kwargs
667658
668659 def __str__ (self ):
@@ -753,7 +744,7 @@ class EntityCustomField(JsonObject):
753744 "item_type" ,
754745 "user" ,
755746 "entity_ref" ,
756- "boolean"
747+ "boolean" ,
757748 }
758749
759750 def __init__ (
0 commit comments