diff --git a/examples/API Tutorial in Python.md b/examples/API Tutorial in Python.md index 1232803..2318998 100644 --- a/examples/API Tutorial in Python.md +++ b/examples/API Tutorial in Python.md @@ -25,7 +25,7 @@ base_url = 'https://labelbase.space/api/v0/' # Define headers containing the API key headers = { - 'Authorization': f'Token {api_key}' + 'Authorization': f'Token {api_key}' # Authentication scheme is 'Token' not 'Bearer' or 'JWT' } ```