Skip to content
This repository was archived by the owner on Jun 3, 2025. It is now read-only.

Commit e6046a4

Browse files
authored
Removing use of os join for url formation (#96)
1 parent 5969c01 commit e6046a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sparsezoo/requests/authentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
_LOGGER = logging.getLogger(__name__)
3636

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

4141
CREDENTIALS_YAML = os.path.abspath(

0 commit comments

Comments
 (0)