johnsturgeon / plex-tools

Utilities and scripts for plex using the Plex API
MIT License
14 stars 0 forks source link

Remove unused methods #33

Open johnsturgeon opened 4 months ago

johnsturgeon commented 4 months ago
    def is_duplicate(self, other):
        return self.hash_val == other.hash_val

    def is_identical(self, other):
        return self.track == other.track

Along with property self.hash_val = str(f"{self.title}{self.artist}{self.album}{self.duration}")