Skip to content

Commit

Permalink
Removing use of os join for url formation (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinaer authored Jun 9, 2021
1 parent 5969c01 commit e6046a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sparsezoo/requests/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
_LOGGER = logging.getLogger(__name__)

NM_TOKEN_HEADER = "nm-token-header"
AUTH_API = os.path.join(BASE_API_URL, "auth")
AUTH_API = f"{BASE_API_URL}/auth"
PUBLIC_AUTH_TYPE = "public"

CREDENTIALS_YAML = os.path.abspath(
Expand Down

0 comments on commit e6046a4

Please sign in to comment.