Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

Commit

Permalink
Linting (flake8)
Browse files Browse the repository at this point in the history
Signed-off-by: Cédric Foellmi <[email protected]>
  • Loading branch information
onekiloparsec committed Jul 31, 2023
1 parent fac55b2 commit 37a127f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion oort/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def telescopes(state, organisation=None):
help="Zip the data files (FITS and XISF) before sending to the cloud. Default is False.")
@click.option('-d', '--dataset',
required=False, nargs=1, type=click.STRING,
help="If provided, oort will use a single dataset with that name to contain all the data of the folder (and its subfolders).")
help="Put all data contained in the folder into a single dataset designated by its name or UUID.")
@basic_options
@pass_state
def upload(state, folder, organisation=None, telescope=None, force=False, zip=False, dataset=None):
Expand Down
2 changes: 1 addition & 1 deletion oort/cli/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def display_command_summary(folders: list, identity: Identity):
if identity.dataset:
click.echo(f" • Ignoring folder names. Using a single dataset with name|uuid {identity.dataset}.")
else:
click.echo(f" • Using folder names for dataset names (one folder = one dataset).")
click.echo(" • Using folder names for dataset names (one folder = one dataset).")

home_path = pathlib.Path.home()
existing_folders = [section.get('path') for section in get_oort_config_upload_folder_sections()]
Expand Down

0 comments on commit 37a127f

Please sign in to comment.