Remove TODO note about request fields being strings - they're always strings

This commit is contained in:
Paul "LeoNerd" Evans 2016-08-18 15:53:01 +01:00
parent d7b42afc74
commit f3afd6ef1a

View File

@ -38,8 +38,6 @@ class ThirdPartyUserServlet(RestServlet):
fields = request.args
del fields["access_token"]
# TODO(paul): Some type checking on the request args might be nice
# They should probably all be strings
results = yield self.appservice_handler.query_3pu(protocol, fields)
defer.returnValue((200, results))