Skip to content

Commit 47072c3

Browse files
committed
Remove redundant default parameters
1 parent 7ff9a73 commit 47072c3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/json/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ def dumps(obj, *, skipkeys=False, ensure_ascii=True, check_circular=True,
241241
**kw).encode(obj)
242242

243243

244-
_default_decoder = JSONDecoder(object_hook=None, object_pairs_hook=None, array_hook=None)
244+
_default_decoder = JSONDecoder()
245245

246246

247247
def detect_encoding(b):

0 commit comments

Comments
 (0)