Removed --library/--db from import command, #1105 (#1107)

This commit is contained in:
Rhet Turnbull 2023-07-02 10:03:00 -06:00 committed by GitHub
parent 889c878138
commit 179997aa96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 6 deletions

View File

@ -13,7 +13,7 @@ from osxphotos.platform import is_macos
from .about import about
from .albums import albums
from .cli_params import DB_OPTION, DEBUG_OPTIONS, JSON_OPTION, VERSION_OPTION
from .cli_params import DEBUG_OPTIONS, VERSION_OPTION
from .common import OSXPHOTOS_HIDDEN
from .debug_dump import debug_dump
from .docs import docs_command
@ -62,8 +62,6 @@ CTX_SETTINGS = dict(help_option_names=["-h", "--help"])
@click.group(context_settings=CTX_SETTINGS)
@VERSION_OPTION
@DB_OPTION
@JSON_OPTION
@DEBUG_OPTIONS
@click.option(
"--profile", is_flag=True, hidden=OSXPHOTOS_HIDDEN, help="Enable profiling"
@ -83,12 +81,12 @@ CTX_SETTINGS = dict(help_option_names=["-h", "--help"])
"Default = 'cumulative'.",
)
@click.pass_context
def cli_main(ctx, db, json_, profile, profile_sort, **kwargs):
def cli_main(ctx, profile, profile_sort, **kwargs):
"""osxphotos: the multi-tool for your Photos library"""
# Note: kwargs is used to catch any debug options passed in
# the debug options are handled in cli/__init__.py
# before this function is called
ctx.obj = CLI_Obj(db=db, json=json_, group=cli_main)
ctx.obj = CLI_Obj(group=cli_main)
if profile:
click.echo("Profiling...")
profile_sort = profile_sort or ["cumulative"]

View File

@ -1422,7 +1422,13 @@ def import_cli(
verbose_flag,
walk,
):
"""Import photos and videos into Photos."""
"""Import photos and videos into Photos. Photos will be imported into the
most recently opened Photos library.
Photos are imported one at a time thus the "Imports" album in Photos will show
a new import group for each photo imported. Batch import into a single import
group will be added in a future release.
"""
verbose = verbose_print(verbose=verbose_flag, timestamp=timestamp, theme=theme)