(path: Path | str | None)
| 417 | |
| 418 | |
| 419 | def _script_metadata_hash(path: Path | str | None) -> str | None: |
| 420 | if path is None: |
| 421 | return None |
| 422 | from marimo._utils.inline_script_metadata import ( |
| 423 | script_metadata_hash_from_filename, |
| 424 | ) |
| 425 | |
| 426 | return script_metadata_hash_from_filename(str(path)) |
| 427 | |
| 428 | |
| 429 | class SessionCacheWriter(AsyncBackgroundTask): |
no test coverage detected
searching dependent graphs…