Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add docstring to DrfJsonSerializer so we know why it's there #4836

Merged
merged 2 commits into from
Nov 1, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion readthedocs/restapi/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@
"""Simple client to access our API with Slumber credentials."""

from __future__ import (
absolute_import, division, print_function, unicode_literals)
absolute_import,
division,
print_function,
unicode_literals,
)

import logging

Expand Down Expand Up @@ -32,6 +36,7 @@ def loads(self, data):
return JSONParser().parse(data)

def dumps(self, data):
"""Used to be able to render datetime objects."""
return JSONRenderer().render(data)


Expand Down