Skip to content

Commit

Permalink
Remove unnecessary get additional data method from parsable inteface
Browse files Browse the repository at this point in the history
  • Loading branch information
samwelkanda committed Jul 14, 2022
1 parent 1cb7bb8 commit bf4b73c
Showing 1 changed file with 0 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,6 @@ class Parsable(ABC):
"""
Defines a serializable model object.
"""
@abstractmethod
def get_additional_data(self) -> Dict[str, Any]:
"""Gets the additional data for this object that did not belong to the properties
Returns:
Dict[str, Any]: The additional data for this object
"""
pass

@abstractmethod
def get_field_deserializers(self) -> Dict[str, Callable[[T, 'ParseNode'], None]]:
"""Gets the deserialization information for this object.
Expand Down

0 comments on commit bf4b73c

Please sign in to comment.