Skip to content

Commit

Permalink
fix annoying spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
mdr0id committed Jul 23, 2024
1 parent 64807ab commit 6dc490e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
Binary file added sdk/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file added sdk/__pycache__/jito_jsonrpc_sdk.cpython-310.pyc
Binary file not shown.
18 changes: 7 additions & 11 deletions sdk/jito_jsonrpc_sdk.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,15 @@ def __send_request(self, endpoint, method, params=None):
return "Error: Please enter a valid endpoint."

if self.uuid_var == None:
{
headers = {
'Content-Type': 'application/json',
"accept": "application/json"
}
headers = {
'Content-Type': 'application/json',
"accept": "application/json"
}
else:
{
headers = {
'Content-Type': 'application/json',
"accept": "application/json",
"x-jito-atuh": self.uuid_var
}
headers = {
'Content-Type': 'application/json',
"accept": "application/json",
"x-jito-atuh": self.uuid_var
}
data = {
"id": 1,
Expand Down

0 comments on commit 6dc490e

Please sign in to comment.