Skip to content

Commit

Permalink
adjust format
Browse files Browse the repository at this point in the history
adjust format
  • Loading branch information
denarch22 committed Dec 4, 2024
1 parent 3275811 commit 5287829
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ def main():
sysexit("Process completed successfully.")

elif args.command == "validate":
create_collection_local(collection, f"input/{args.folder}", args.collection)
create_collection_local(
collection, f"input/{args.folder}", args.collection
)
logger.info("Validation successful.")

elif args.command == "remove":
Expand Down
2 changes: 1 addition & 1 deletion src/utils/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def authenticate():
auth_data = {"username": username, "password": password}

url = build_url(stac_url, auth_url, args_dict={})
response = requests.post(url, data=auth_data)
response = requests.post(url, data=auth_data)
response.raise_for_status()

token = response.json().get("access_token")
Expand Down

0 comments on commit 5287829

Please sign in to comment.