Clear the content of the specified scope :param str scope: Target scope name. Default is the current scope.
(scope: str = None)
| 317 | |
| 318 | |
| 319 | def clear(scope: str = None): |
| 320 | """Clear the content of the specified scope |
| 321 | |
| 322 | :param str scope: Target scope name. Default is the current scope. |
| 323 | """ |
| 324 | if scope is None: |
| 325 | scope = get_scope() |
| 326 | send_msg('output_ctl', dict(clear=scope2dom(scope))) |
| 327 | |
| 328 | |
| 329 | def remove(scope: str = None): |
no test coverage detected
searching dependent graphs…