We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3c8efcc + 0955d85 commit 4b4cd99Copy full SHA for 4b4cd99
README.md
@@ -357,7 +357,7 @@ This example shows how to use Judge0 Python SDK with your own Judge0 instance.
357
```python
358
import judge0
359
360
-client = judge0.Client("http://127.0.0.1:2358", None)
+client = judge0.Client("http://127.0.0.1:2358")
361
362
source_code = """
363
#include <stdio.h>
src/judge0/clients.py
@@ -33,7 +33,7 @@ class Client:
33
def __init__(
34
self,
35
endpoint,
36
- auth_headers,
+ auth_headers=None,
37
*,
38
retry_strategy: Optional[RetryStrategy] = None,
39
) -> None:
0 commit comments