LFRequest.py: adds todo comments

Signed-off-by: Jed Reynolds <jed@candelatech.com>
This commit is contained in:
Jed Reynolds
2021-09-09 15:47:46 -07:00
parent 7cdf948d54
commit 9e116bd950

View File

@@ -286,6 +286,11 @@ class LFRequest:
self.add_post_data(data=data)
def add_post_data(self, data):
"""
TODO: this is a setter and should be named 'set_post_data'
:param data: dictionary of parameters for post
:return: nothing
"""
self.post_data = data
def has_errors(self):