Get the queue associated with the module. Returns: str: The queue.
(self)
| 218 | |
| 219 | @property |
| 220 | def queue(self) -> str: |
| 221 | """ |
| 222 | Get the queue associated with the module. |
| 223 | |
| 224 | Returns: |
| 225 | str: The queue. |
| 226 | """ |
| 227 | try: |
| 228 | return self.configs.order_by("?").first().queue |
| 229 | except AttributeError: |
| 230 | return None |
| 231 | |
| 232 | def _clean_python_module(self): |
| 233 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected