Skip to content

Commit

Permalink
Merge pull request #77 from singnet/bugfix/issue-76-check-python-version
Browse files Browse the repository at this point in the history
[#76] Remove pipe
  • Loading branch information
marcocapozzoli authored Dec 19, 2023
2 parents fbda6dc + 218fea1 commit 6606d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hyperon_das/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def __init__(self, url: str, server_count: int = 0, name: Optional[str] = None):
self.name = f'server-{server_count}'
self.url = url

def _send_request(self, payload) -> str | dict | int:
def _send_request(self, payload) -> Any:
try:
response = requests.request('POST', url=self.url, data=json.dumps(payload))
if response.status_code == 200:
Expand Down

0 comments on commit 6606d8c

Please sign in to comment.