Returns True if the system is running in development mode.
(self)
| 585 | return getattr(self, 'mode', 'production').lower() == 'production' |
| 586 | |
| 587 | def is_development_mode(self) -> bool: |
| 588 | """Returns True if the system is running in development mode.""" |
| 589 | return getattr(self, 'mode', 'production').lower() == 'development' |
| 590 | |
| 591 | def is_testing_mode(self) -> bool: |
| 592 | """Returns True if the system is running in testing mode.""" |
no outgoing calls
no test coverage detected