Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ This example shows how to use Judge0 Python SDK with your own Judge0 instance.
```python
import judge0

client = judge0.Client("http://127.0.0.1:2358", None)
client = judge0.Client("http://127.0.0.1:2358")

source_code = """
#include <stdio.h>
Expand Down
2 changes: 1 addition & 1 deletion src/judge0/clients.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class Client:
def __init__(
self,
endpoint,
auth_headers,
auth_headers=None,
*,
retry_strategy: Optional[RetryStrategy] = None,
) -> None:
Expand Down