-
Couldn't load subscription status.
- Fork 200
Add support for Square Art #1557
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
68a95cc
26e4227
da6d65e
90aa3a5
235232f
fa43351
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -8,7 +8,8 @@ | |
| from plexapi.exceptions import BadRequest | ||
| from plexapi.mixins import ( | ||
| AdvancedSettingsMixin, SplitMergeMixin, UnmatchMatchMixin, ExtrasMixin, HubsMixin, PlayedUnplayedMixin, RatingMixin, | ||
| ArtUrlMixin, ArtMixin, LogoMixin, PosterUrlMixin, PosterMixin, ThemeUrlMixin, ThemeMixin, | ||
| ArtUrlMixin, ArtMixin, LogoMixin, LogoUrlMixin, PosterUrlMixin, PosterMixin, SquareArtMixin, SquareArtUrlMixin, | ||
|
||
| ThemeUrlMixin, ThemeMixin, | ||
| MovieEditMixins, ShowEditMixins, SeasonEditMixins, EpisodeEditMixins, | ||
| WatchlistMixin | ||
| ) | ||
|
|
@@ -338,7 +339,7 @@ def sync(self, videoQuality, client=None, clientId=None, limit=None, unwatched=F | |
| class Movie( | ||
| Video, Playable, | ||
| AdvancedSettingsMixin, SplitMergeMixin, UnmatchMatchMixin, ExtrasMixin, HubsMixin, RatingMixin, | ||
| ArtMixin, LogoMixin, PosterMixin, ThemeMixin, | ||
| ArtMixin, LogoMixin, PosterMixin, SquareArtMixin, ThemeMixin, | ||
| MovieEditMixins, | ||
| WatchlistMixin | ||
| ): | ||
|
|
@@ -545,7 +546,7 @@ def metadataDirectory(self): | |
| class Show( | ||
| Video, | ||
| AdvancedSettingsMixin, SplitMergeMixin, UnmatchMatchMixin, ExtrasMixin, HubsMixin, RatingMixin, | ||
| ArtMixin, LogoMixin, PosterMixin, ThemeMixin, | ||
| ArtMixin, LogoMixin, PosterMixin, SquareArtMixin, ThemeMixin, | ||
| ShowEditMixins, | ||
| WatchlistMixin | ||
| ): | ||
|
|
@@ -792,7 +793,7 @@ def metadataDirectory(self): | |
| class Season( | ||
| Video, | ||
| AdvancedSettingsMixin, ExtrasMixin, RatingMixin, | ||
| ArtMixin, LogoMixin, PosterMixin, ThemeUrlMixin, | ||
| ArtMixin, LogoMixin, PosterMixin, SquareArtMixin, ThemeUrlMixin, | ||
| SeasonEditMixins | ||
| ): | ||
| """ Represents a single Season. | ||
|
|
@@ -974,7 +975,7 @@ def metadataDirectory(self): | |
| class Episode( | ||
| Video, Playable, | ||
| ExtrasMixin, RatingMixin, | ||
| ArtMixin, LogoMixin, PosterMixin, ThemeUrlMixin, | ||
| ArtMixin, LogoMixin, PosterMixin, SquareArtMixin, ThemeUrlMixin, | ||
| EpisodeEditMixins | ||
| ): | ||
| """ Represents a single Episode. | ||
|
|
@@ -1250,7 +1251,7 @@ def metadataDirectory(self): | |
| @utils.registerPlexObject | ||
| class Clip( | ||
| Video, Playable, | ||
| ArtUrlMixin, PosterUrlMixin | ||
| ArtUrlMixin, LogoUrlMixin, PosterUrlMixin, SquareArtUrlMixin | ||
| ): | ||
| """ Represents a single Clip. | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nitpick] The import statement has become quite long and difficult to read. Consider grouping related mixins on separate lines for better readability. For example, URL mixins on one line and regular mixins on another.