Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Bartlett committed Oct 28, 2020
1 parent 63d62b3 commit 83a2c75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions multi_import/importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,10 @@ def to_internal_value(self, data):
return data

def create(self, validated_data):
raise NotImplemented()
raise NotImplementedError()

def update(self, instance, validated_data):
raise NotImplemented()
raise NotImplementedError()


class Importer(object):
Expand Down

0 comments on commit 83a2c75

Please sign in to comment.