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.
1 parent 0bdac0a commit bac1b85Copy full SHA for bac1b85
onvif/client.py
@@ -106,16 +106,10 @@ class AsyncTransportProtocolErrorHandler(AsyncTransport):
106
107
@retry_connection_error(attempts=2, exception=httpx.RemoteProtocolError)
108
async def post(self, address, message, headers):
109
- import pprint
110
-
111
- pprint.pprint(["post", address, message, headers])
112
return await super().post(address, message, headers)
113
114
115
async def get(self, address, params, headers):
116
117
118
- pprint.pprint(["get", address, params, headers])
119
return await super().get(address, params, headers)
120
121
0 commit comments