Skip to content

Commit

Permalink
Remove Logging of Headers (#52)
Browse files Browse the repository at this point in the history
* remove print headers

* bump version
  • Loading branch information
mshrieve authored Feb 16, 2023
1 parent f4b8abd commit 8abcae5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion py_clob_client/http_helpers/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ def overloadHeaders(method: str, headers: dict) -> dict:
def request(endpoint: str, method: str, headers=None, data=None):
try:
headers = overloadHeaders(method, headers)
print(headers)
resp = requests.request(
method=method, url=endpoint, headers=headers, json=data if data else None
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="py_clob_client",
version="0.2.2",
version="0.2.3",
author="Polymarket Engineering",
author_email="[email protected]",
maintainer="Polymarket Engineering",
Expand Down

0 comments on commit 8abcae5

Please sign in to comment.