Skip to content

Commit

Permalink
Fix NotImplementedError for Field.to_internal_value and Field.to_repr…
Browse files Browse the repository at this point in the history
…esentation (encode#6996)
  • Loading branch information
JEphron authored and sigvef committed Dec 3, 2022
1 parent d8a13b7 commit 32a1e8e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions rest_framework/fields.py
Expand Up @@ -605,8 +605,11 @@ def to_internal_value(self, data):
Transform the *incoming* primitive data into a native value.
"""
raise NotImplementedError(
'{cls}.to_internal_value() must be implemented.'.format(
cls=self.__class__.__name__
'{cls}.to_internal_value() must be implemented for field '
'{field_name}. If you do not need to support write operations '
'you probably want to subclass `ReadOnlyField` instead.'.format(
cls=self.__class__.__name__,
field_name=self.field_name,
)
)

Expand All @@ -615,9 +618,7 @@ def to_representation(self, value):
Transform the *outgoing* native value into primitive data.
"""
raise NotImplementedError(
'{cls}.to_representation() must be implemented for field '
'{field_name}. If you do not need to support write operations '
'you probably want to subclass `ReadOnlyField` instead.'.format(
'{cls}.to_representation() must be implemented for field {field_name}.'.format(
cls=self.__class__.__name__,
field_name=self.field_name,
)
Expand Down

0 comments on commit 32a1e8e

Please sign in to comment.