We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e9244f commit ceb3f03Copy full SHA for ceb3f03
plexapi/base.py
@@ -259,14 +259,6 @@ class PlexPartialObject(PlexObject):
259
automatically and update itself.
260
"""
261
262
- def delete(self):
263
- try:
264
- return self._server.query(self.key, method=self._server._session.delete)
265
- except BadRequest:
266
- log.error("Failed to delete %s. This could be because you havn't allowed "
267
- "items to be deleted" % self.key)
268
- raise
269
-
270
def __eq__(self, other):
271
return other is not None and self.key == other.key
272
0 commit comments