Formatting

Signed-off-by: Luis Garcia <git@luigi311.com>
This commit is contained in:
Luis Garcia
2025-02-21 14:41:19 -07:00
parent 0b02f531c1
commit 998f2b1209
3 changed files with 13 additions and 9 deletions

View File

@@ -1,6 +1,7 @@
# Functions for Jellyfin and Emby
import traceback, os
import traceback
import os
from math import floor
from typing import Any, Literal
from dotenv import load_dotenv
@@ -427,9 +428,9 @@ class JellyfinEmby:
if user_name.lower() not in users_watched:
users_watched[user_name.lower()] = UserData()
users_watched[user_name.lower()].libraries[
library_title
] = library_data
users_watched[user_name.lower()].libraries[library_title] = (
library_data
)
return users_watched
except Exception as e: