Compare commits

..

No commits in common. "25d50c375be94091f1d1b4f8cf9d7bb1b7d608dd" and "2f2eccf053746e62da4133efa2827ba6a2226eb2" have entirely different histories.

2 changed files with 3 additions and 7 deletions

View file

@ -23,10 +23,6 @@ This is meant as a **starting point**. Review and tighten the resulting policy b
## Install ## Install
If using my artifacts from the Releases page, you may wish to verify the GPG signatures with the key.
It can be found at https://mig5.net/static/mig5.asc . The fingerprint is `00AE817C24A10C2540461A9C1D7CDE0234DB458D`.
### Poetry ### Poetry
```bash ```bash
@ -46,7 +42,7 @@ Download the CSPresso.AppImage from the releases page, make it executable with `
## Run ## Run
```bash ```bash
cspresso https://example.com --max-pages 10 poetry run cspresso https://example.com --max-pages 10
``` ```
The tool will: The tool will:

View file

@ -2,7 +2,7 @@ from __future__ import annotations
import os import os
import shutil import shutil
import subprocess # nosec import subprocess
import sys import sys
import tempfile import tempfile
import time import time
@ -145,7 +145,7 @@ def _release_install_lock(lock_path: Path) -> None:
try: try:
lock_path.unlink(missing_ok=True) lock_path.unlink(missing_ok=True)
except Exception: except Exception:
pass # nosec pass
def _install_chromium(browsers_path: Path, with_deps: bool = False) -> None: def _install_chromium(browsers_path: Path, with_deps: bool = False) -> None: