Return True if the lock is currently held.
(self)
| 36 | """Protocol for lock-like objects that support locked().""" |
| 37 | |
| 38 | def locked(self) -> bool: |
| 39 | """Return True if the lock is currently held.""" |
| 40 | ... |
| 41 | |
| 42 | |
| 43 | logger = logging.getLogger("AIStudioProxyServer") |
no outgoing calls