Skip to content

Commit

Permalink
Fix typo in resources.py
Browse files Browse the repository at this point in the history
  • Loading branch information
josemacassan committed Feb 6, 2025
1 parent fe1c072 commit bf57f21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion threescale_api/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ def approve(self, entity_id: int, **kwargs):
return instance

def change_plan(self, entity_id: int, plan_id: int, **kwargs):
params = {"plan_id":plan_id}
params = {"plan_id": plan_id}
url = self.url + f"/{entity_id}/change_plan.json"
response = self.rest.put(url=url, json=params, **kwargs)
instance = utils.extract_response(response=response)
Expand Down

0 comments on commit bf57f21

Please sign in to comment.