From aa33a6949f3789bb0a57d364f0708796b17f3548 Mon Sep 17 00:00:00 2001
From: Daniel Hornung <d.hornung@indiscale.com>
Date: Sun, 14 Apr 2024 10:37:15 +0200
Subject: [PATCH] MAINT: Fixing type hint.

---
 src/linkahead/common/models.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/linkahead/common/models.py b/src/linkahead/common/models.py
index d7a30569..b087496d 100644
--- a/src/linkahead/common/models.py
+++ b/src/linkahead/common/models.py
@@ -3365,7 +3365,7 @@ class Container(list):
 
         # which is to be synced with which:
         # sync_dict[local_entity]=sync_remote_enities
-        sync_dict: Dict[Entity, Optional[List[Entity]]] = dict()
+        sync_dict: Dict[Union[Container, Entity], Optional[List[Entity]]] = dict()
 
         # list of remote entities which already have a local equivalent
         used_remote_entities = []
-- 
GitLab