Skip to content

Commit

Permalink
fix(19-default-global-errors): set value from None to empty dictionary
Browse files Browse the repository at this point in the history
This commit bears the change of setting the default value of global errors from None to an empty dictionary in the global configuration class.

closes 19
  • Loading branch information
sufyankhanrao committed Nov 18, 2022
1 parent dd25d11 commit 3d29e3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apimatic_core/configurations/global_configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def __init__(
self, http_client_configuration=HttpClientConfiguration()
):
self._http_client_configuration = http_client_configuration
self._global_errors = None
self._global_errors = {}
self._global_headers = {}
self._additional_headers = {}
self._auth_managers = {}
Expand Down

0 comments on commit 3d29e3a

Please sign in to comment.