Skip to content

Commit 73bbbb3

Browse files
committed
style: format auth_options decorator
1 parent 16c1191 commit 73bbbb3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/datapilot/cli/decorators.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def process_config(config):
4949

5050
def auth_options(f):
5151
"""Decorator to add authentication options to commands."""
52+
5253
@click.option("--token", required=False, help="Your API token for authentication.", hide_input=True)
5354
@click.option("--instance-name", required=False, help="Your tenant ID.")
5455
@click.option("--backend-url", required=False, help="Altimate's Backend URL", default="https://api.myaltimate.com")
@@ -86,5 +87,5 @@ def wrapper(ctx, token, instance_name, backend_url, *args, **kwargs):
8687
ctx.obj.setdefault("backend_url", "https://api.myaltimate.com")
8788

8889
return f(ctx, *args, **kwargs)
89-
90+
9091
return wrapper

0 commit comments

Comments
 (0)