Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TENANT_ID=
CLIENT_ID=

EARTHDATA_TOKEN=
# azure blob storage account name for rapida tool. default is 'undpgeohub'
AZURE_STORAGE_ACCOUNT=
# container name of azure blob storage for publishing. default is 'rapida'
Expand Down
1 change: 0 additions & 1 deletion rapida/cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
from rapida.cli.h3id import addh3id
from rapida.cli.ntl import ntl
from rich.progress import Progress

import click
import nest_asyncio
nest_asyncio.apply()
Expand Down
2 changes: 1 addition & 1 deletion rapida/cli/aclick.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def list_commands(self, ctx):
def command(self, *args, **kwargs):
# Automatically wrap all @group.command() calls in AsyncCommand
kwargs.setdefault('cls', AsyncCommand)
return super().command(*args, **kwargs)
return super().command(*args, no_args_is_help=True, **kwargs)

def group(self, *args, **kwargs):
# Ensure nested groups inherit this behavior
Expand Down
Loading
Loading