Initialize the empty global instance of `SecurityManager`.
()
| 227 | |
| 228 | |
| 229 | def no_security_manager(): |
| 230 | """ |
| 231 | Initialize the empty global instance of `SecurityManager`. |
| 232 | """ |
| 233 | |
| 234 | global _sm |
| 235 | _sm = None |
| 236 | |
| 237 | |
| 238 | def is_auth_necessary(sm: Optional[SecurityManager]) -> bool: |
no outgoing calls