Changeset 540da2b in flexoentity


Ignore:
Timestamp:
01/07/26 16:03:00 (8 days ago)
Author:
Enrico Schwass <ennoausberlin@…>
Branches:
master
Children:
a1c4ba3
Parents:
a8dca95
Message:

small fixes

Location:
flexoentity
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • flexoentity/__init__.py

    ra8dca95 r540da2b  
    1616from .typed_collection import TypedCollection
    1717from .in_memory_backend import InMemoryBackend
     18from .runtime_backend import RuntimeBackend
    1819from .composite_backend import CompositeBackend
    1920from .entity_manager import EntityManager
     
    3334    "EntityManager",
    3435    "SQLiteEntityBackend",
     36    "RuntimeBackend",
    3537    "InMemoryBackend",
    3638    "CompositeBackend",
  • flexoentity/entity_manager.py

    ra8dca95 r540da2b  
    8989        return self.local_backend.load(flexo_id)
    9090
     91    # FIXME: Readd staging backend later
     92   
    9193    def all(self):
    9294        """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() +
    9496                self.permanent_backend.load_all())
    9597
Note: See TracChangeset for help on using the changeset viewer.