Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions appdaemon/appdaemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
from threading import RLock
from typing import TYPE_CHECKING, Optional

from pydantic import Field

from appdaemon.admin_loop import AdminLoop
from appdaemon.app_management import AppManagement
Expand Down Expand Up @@ -112,7 +111,7 @@ class AppDaemon(metaclass=Singleton):

admin_loop: AdminLoop | None = None
http: Optional["HTTP"] = None
global_lock: RLock = Field(default_factory=RLock)
global_lock: RLock = RLock()

# shut down flag
stopping: bool = False
Expand Down
Loading