Skip to content

Commit 8405bc9

Browse files
committed
remove the default values for both get & post
1 parent 1f66b96 commit 8405bc9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

aikido_zen/background_process/requests/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
from json import dumps as json_dumps
33

44

5-
def get(url, headers=None, timeout=3):
5+
def get(url, headers, timeout):
66
return make_request("GET", url, headers=headers, timeout=timeout)
77

88

9-
def post(url, json=None, headers=None, timeout=3):
9+
def post(url, json, headers, timeout):
1010
data = None
1111
if headers is None:
1212
headers = {}

0 commit comments

Comments
 (0)