mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 22:54:27 -04:00
minor ruff fixes
Some checks are pending
CodeQL / Analyze (python) (push) Waiting to run
Build Debian package / build (push) Waiting to run
Build Docker image / buildx (push) Waiting to run
Build Homebrew package / build (push) Waiting to run
Build GitHub Pages website / build (push) Waiting to run
Build GitHub Pages website / deploy (push) Blocked by required conditions
Run linters / lint (push) Waiting to run
Build Pip package / build (push) Waiting to run
Run tests / python_tests (ubuntu-22.04, 3.11) (push) Waiting to run
Run tests / docker_tests (push) Waiting to run
Some checks are pending
CodeQL / Analyze (python) (push) Waiting to run
Build Debian package / build (push) Waiting to run
Build Docker image / buildx (push) Waiting to run
Build Homebrew package / build (push) Waiting to run
Build GitHub Pages website / build (push) Waiting to run
Build GitHub Pages website / deploy (push) Blocked by required conditions
Run linters / lint (push) Waiting to run
Build Pip package / build (push) Waiting to run
Run tests / python_tests (ubuntu-22.04, 3.11) (push) Waiting to run
Run tests / docker_tests (push) Waiting to run
This commit is contained in:
parent
c00afce71f
commit
c887af0278
2 changed files with 1 additions and 5 deletions
|
@ -4,9 +4,7 @@ import os
|
||||||
import time
|
import time
|
||||||
import sys
|
import sys
|
||||||
import shutil
|
import shutil
|
||||||
import signal
|
|
||||||
import platform
|
import platform
|
||||||
import subprocess
|
|
||||||
|
|
||||||
from typing import Dict, List, Optional, Iterable, IO, Union
|
from typing import Dict, List, Optional, Iterable, IO, Union
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
@ -146,7 +144,6 @@ from .logging_util import (
|
||||||
from .search import flush_search_index, index_links
|
from .search import flush_search_index, index_links
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@enforce_types
|
@enforce_types
|
||||||
def help(out_dir: Path=OUTPUT_DIR) -> None:
|
def help(out_dir: Path=OUTPUT_DIR) -> None:
|
||||||
"""Print the ArchiveBox help message and usage"""
|
"""Print the ArchiveBox help message and usage"""
|
||||||
|
@ -336,7 +333,7 @@ def init(force: bool=False, quick: bool=False, setup: bool=False, out_dir: Path=
|
||||||
" {lightred}Hint:{reset} To import an existing data folder make sure to cd into the folder first, \n"
|
" {lightred}Hint:{reset} To import an existing data folder make sure to cd into the folder first, \n"
|
||||||
" then run and run 'archivebox init' to pick up where you left off.\n\n"
|
" then run and run 'archivebox init' to pick up where you left off.\n\n"
|
||||||
" (Always make sure your data folder is backed up first before updating ArchiveBox)"
|
" (Always make sure your data folder is backed up first before updating ArchiveBox)"
|
||||||
).format(out_dir, **ANSI)
|
).format(**ANSI)
|
||||||
)
|
)
|
||||||
raise SystemExit(2)
|
raise SystemExit(2)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
__package__ = 'archivebox.queues'
|
__package__ = 'archivebox.queues'
|
||||||
|
|
||||||
import sys
|
|
||||||
import time
|
import time
|
||||||
import signal
|
import signal
|
||||||
import psutil
|
import psutil
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue