| Total Complexity | 1 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | from pathlib import Path |
||
| 2 | |||
| 3 | from . import script |
||
| 4 | |||
| 5 | FUNCTIONS = Path(__file__).parent / "browser.applescript" |
||
| 6 | |||
| 7 | |||
| 8 | def close() -> bool: |
||
| 9 | return script.call(FUNCTIONS, "close()") |
||
| 10 |