Skip to content

Commit bf57f21

Browse files
committed
Fix typo in resources.py
1 parent fe1c072 commit bf57f21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

threescale_api/resources.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ def approve(self, entity_id: int, **kwargs):
292292
return instance
293293

294294
def change_plan(self, entity_id: int, plan_id: int, **kwargs):
295-
params = {"plan_id":plan_id}
295+
params = {"plan_id": plan_id}
296296
url = self.url + f"/{entity_id}/change_plan.json"
297297
response = self.rest.put(url=url, json=params, **kwargs)
298298
instance = utils.extract_response(response=response)

0 commit comments

Comments
 (0)