Get the current build context.
(cls)
| 58 | |
| 59 | @classmethod |
| 60 | def get_current(cls) -> Optional['BuildContext']: |
| 61 | """Get the current build context.""" |
| 62 | return cls._current_context |
| 63 | |
| 64 | @classmethod |
| 65 | def set_current(cls, context: Optional['BuildContext']) -> None: |
no outgoing calls
no test coverage detected