Resolve F901 errors

This commit is contained in:
Jeremy Stretch 2024-10-10 16:04:57 -04:00
parent 38b245700a
commit 0398b5fed1
2 changed files with 3 additions and 3 deletions

View File

@ -186,13 +186,13 @@ class AvailableObjectsView(ObjectValidationMixin, APIView):
""" """
Return the parent object. Return the parent object.
""" """
raise NotImplemented() raise NotImplementedError()
def get_available_objects(self, parent, limit=None): def get_available_objects(self, parent, limit=None):
""" """
Return all available objects for the parent. Return all available objects for the parent.
""" """
raise NotImplemented() raise NotImplementedError()
def get_extra_context(self, parent): def get_extra_context(self, parent):
""" """

View File

@ -50,4 +50,4 @@ class DataBackend:
2. Yields the local path at which data has been replicated 2. Yields the local path at which data has been replicated
3. Performs any necessary cleanup 3. Performs any necessary cleanup
""" """
raise NotImplemented() raise NotImplementedError()