Skip to content
Snippets Groups Projects

Resolve "Fix mypy errors in models.py and complete type hints"

All threads resolved!
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -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 = []
Loading