Compute debug mode based on environment.
(self)
| 110 | @computed_field |
| 111 | @property |
| 112 | def debug(self) -> bool: |
| 113 | """Compute debug mode based on environment.""" |
| 114 | return self.environment != "production" |
| 115 | |
| 116 | @computed_field |
| 117 | @property |
no outgoing calls
no test coverage detected