Skip to content
This repository was archived by the owner on Dec 5, 2020. It is now read-only.

Commit a621813

Browse files
authored
Fix auth header format (#120)
Signed-off-by: wslulciuc <[email protected]>
1 parent a89a895 commit a621813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

marquez_client/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@ def get_json(file):
102102

103103
@staticmethod
104104
def add_auth_to(headers, api_key):
105-
headers['Authorization'] = f"Bearer: {api_key}"
105+
headers['Authorization'] = f"Bearer {api_key}"

0 commit comments

Comments
 (0)