Skip to content

Commit

Permalink
rearranged variables
Browse files Browse the repository at this point in the history
  • Loading branch information
chkpwd committed Oct 28, 2024
1 parent ed02d43 commit f51947a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions constants/variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ def __init__(self):
self.monitor_non_filler_sonarr_episodes: bool = to_bool(
self._get_env_var("MONITOR_NON_FILLER_SONARR_EPISODES", required=True, default="True")
)
self.plex_url: str = self._get_env_var("PLEX_URL")
self.plex_token: str = self._get_env_var("PLEX_TOKEN")
self.create_plex_collection: bool = to_bool(
self._get_env_var("CREATE_PLEX_COLLECTION", required=True, default="False")
)
self.plex_url: str = self._get_env_var("PLEX_URL")
self.plex_token: str = self._get_env_var("PLEX_TOKEN")
self.plex_anime_library: str = self._get_env_var("PLEX_ANIME_LIBRARY")
self.plex_anime_name: str = self._get_env_var("PLEX_ANIME_NAME")

Expand Down

0 comments on commit f51947a

Please sign in to comment.