-
Notifications
You must be signed in to change notification settings - Fork 393
Closed
Labels
Milestone
Description
The current implementation of AutoFormat uses a bool type, but this has become problematic due to the need to represent three distinct states:
- Default
- On
- Off
Since a bool can only represent two states (true/false), it’s not suitable for this use case. To resolve this, we will migrate the functionality to use tw.State, which can support the three required states.
Reference
apstndb