Skip to content

Commit

Permalink
Fix regression on Querystring param handling
Browse files Browse the repository at this point in the history
  • Loading branch information
bitonio committed Jun 5, 2024
1 parent 9c18a1b commit 91c209f
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions libeaa/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,9 +254,6 @@ def build_params(self, params=None):
final_params.update({'accountSwitchKey': self._config.accountkey})
if isinstance(params, dict):
final_params.update(params)
if params.get('_remove-extras_'):
for p in ('_remove-extras_', 'contract_id', 'accountkey', 'accountSwitchKey', 'ua'):
if final_params.get(p): del(final_params[p])
return final_params

@staticmethod
Expand Down

0 comments on commit 91c209f

Please sign in to comment.