From 29beb62a74af5e165a83e6b87c0658eee3ed1173 Mon Sep 17 00:00:00 2001 From: Esieboma Jeremiah <57163971+esiebomaj@users.noreply.github.com> Date: Mon, 28 Sep 2020 07:28:33 +0100 Subject: [PATCH] corrects typographical error in line 118 --- rest_framework/serializers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/serializers.py b/rest_framework/serializers.py index 3def1946cf..49eec82591 100644 --- a/rest_framework/serializers.py +++ b/rest_framework/serializers.py @@ -115,7 +115,7 @@ def __init__(self, instance=None, data=empty, **kwargs): super().__init__(**kwargs) def __new__(cls, *args, **kwargs): - # We override this method in order to automagically create + # We override this method in order to automatically create # `ListSerializer` classes instead when `many=True` is set. if kwargs.pop('many', False): return cls.many_init(*args, **kwargs)