Skip to content
This repository was archived by the owner on Jan 2, 2020. It is now read-only.

Commit bd6ae9b

Browse files
authored
Fix create_feed_item to use make_request
1 parent 0bddd05 commit bd6ae9b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

monzo/monzo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ def create_feed_item(self, account_id, feed_type, url, params):
238238
"params[body_color]": params.get('body_color'),
239239
"params[title_color]": params.get('title_color')
240240
}
241-
response = self.request.post(url, data=data)
241+
response = self.oauth_session.make_request(url, data=data)
242242
return response
243243

244244

0 commit comments

Comments
 (0)