Changeset 540da2b in flexoentity
- Timestamp:
- 01/07/26 16:03:00 (8 days ago)
- Branches:
- master
- Children:
- a1c4ba3
- Parents:
- a8dca95
- Location:
- flexoentity
- Files:
-
- 2 edited
-
__init__.py (modified) (2 diffs)
-
entity_manager.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
flexoentity/__init__.py
ra8dca95 r540da2b 16 16 from .typed_collection import TypedCollection 17 17 from .in_memory_backend import InMemoryBackend 18 from .runtime_backend import RuntimeBackend 18 19 from .composite_backend import CompositeBackend 19 20 from .entity_manager import EntityManager … … 33 34 "EntityManager", 34 35 "SQLiteEntityBackend", 36 "RuntimeBackend", 35 37 "InMemoryBackend", 36 38 "CompositeBackend", -
flexoentity/entity_manager.py
ra8dca95 r540da2b 89 89 return self.local_backend.load(flexo_id) 90 90 91 # FIXME: Readd staging backend later 92 91 93 def all(self): 92 94 """Load all entities as a list of instances.""" 93 return (self.local_backend.load_all() + self.staging_backend.load_all() +95 return (self.local_backend.load_all() + # self.staging_backend.load_all() + 94 96 self.permanent_backend.load_all()) 95 97
Note:
See TracChangeset
for help on using the changeset viewer.
